]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/html/head
removing old opac images and css
[Evergreen.git] / Open-ILS / src / templates / html / head
1 [%# html/head: <head>...</head> element for HTML pages
2   #
3   # ARGS:
4   #   - html.head.title     # page title
5   #   - html.head.meta      # hash of metadata  
6   #   - html.headers        # additional HTML headers
7   # TODO:
8   #   - various other header items are not currently handled, 
9   #     e.g. base, xbase, target, script, noscript, etc., but
10   #     you can set 'html.headers' as a general work-around
11   #     to put extra stuff in the <head>...</head> element
12 -%]
13 [%      
14         "<head>\n";
15
16         IF title;
17                 "<title>" _ title _ "</title>";
18         END;
19
20         FOREACH item = html.head.meta;
21                 "<meta name='$item.key' content='$item.value'>";
22         END;
23         html.headers;
24         content;
25         "</head>";
26
27 %]
28