]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/html/body
added more attributes
[working/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 id; " id='$id'"; END;
16
17         ">";
18
19         content;
20
21         "</body>";
22
23 %]