Commit | Line | Data |
---|---|---|
63a46810 P |
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
2 | <html> | |
3 | <head> | |
4 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
5 | <title>%(page_title)s</title> | |
6 | <style type="text/css"> | |
7 | body { background: url(%(background_url)s) lightblue; } | |
8 | h1 em { color: blue; font-size: 70%%; } | |
9 | ul { padding-left: 5pt; margin-left: 3pt; border-left: 1px dotted blue; } | |
10 | li { padding: 3pt; list-style: none; font-weight: bold; font-family: sans; font-size: 80%%; } | |
11 | li em { color: blue; font-size: 70%%; } | |
12 | a { color: black; text-decoration: none; } | |
13 | a:visited { color: black; text-decoration: none; } | |
14 | a:hover { color: black; text-decoration: underline; } | |
15 | .dir { font-size: 100%%; } | |
16 | .hidden { display: none; } | |
17 | .visible { display: inline; } | |
18 | .alert { color: red; } | |
19 | </style> | |
20 | <script type="text/javascript"> | |
21 | function sw(id) { | |
22 | elt = document.getElementById(id) | |
23 | if (elt.className == 'hidden') { | |
24 | elt.className = 'visible'; | |
25 | } else { | |
26 | elt.className = 'hidden'; | |
27 | } | |
28 | } | |
29 | </script> | |
30 | </head> | |
31 | <body> | |
32 | <h1>%(page_title)s</h1> | |
33 | <!-- SCRIPT_NAME: %(SCRIPT_NAME)s --> | |
34 | <!-- PATH_INFO: %(PATH_INFO)s --> | |
35 | %(content)s | |
36 | </body> | |
37 | </html> |