1 | <% _=n_ %> |
---|
2 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
---|
3 | <html> |
---|
4 | |
---|
5 | <head> |
---|
6 | <title>${self.title()}</title> |
---|
7 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
---|
8 | ${self.metas()} |
---|
9 | ${self.stylesheets()} |
---|
10 | ${self.javascripts()} |
---|
11 | </head> |
---|
12 | |
---|
13 | <body> |
---|
14 | ${next.body()} |
---|
15 | </body> |
---|
16 | </html> |
---|
17 | |
---|
18 | ## Default title |
---|
19 | <%def name="title()"></%def> |
---|
20 | |
---|
21 | ## Default stylesheets |
---|
22 | <%def name="stylesheets()"> |
---|
23 | ${h.css('base')} |
---|
24 | </%def> |
---|
25 | |
---|
26 | ## Default javascripts |
---|
27 | <%def name="javascripts()"> |
---|
28 | ## <!--[if lt IE 7]> |
---|
29 | ## <script type='text/javascript' src="/static/scripts/IE7.js"> </script> |
---|
30 | ## <![endif]--> |
---|
31 | ${h.js( "jquery", "galaxy.base" )} |
---|
32 | </%def> |
---|
33 | |
---|
34 | ## Additional metas can be defined by templates inheriting from this one. |
---|
35 | <%def name="metas()"></%def> |
---|