]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/html/body
Let the onslaught continue...
[Evergreen.git] / Open-ILS / src / templates / html / body
1 [%
2
3         #--------------------------------------------------------------------------------- 
4         #html/body: <body>...</body> element for HTML pages
5         #
6         # ARGS:
7         #
8         # content         # body content
9         #--------------------------------------------------------------------------------- 
10
11         "<body";
12
13         IF onload; " onload='$onload'"; END;
14         IF onclick; " onclick='$onclick'"; END;
15         IF style; " style='$style'"; END;
16         IF class; " class='$class'"; END;
17         IF id; " id='$id'"; END;
18
19         ">";
20
21         content;
22
23         "</body>";
24
25 %]