]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/html/body
some basic html templates for use in wrappers. these will be augmented
[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; 
14                 "onload='$onload'"; 
15         END;
16
17         ">";
18
19         content;
20
21         "</body>";
22
23 %]