Sourcecode in Site/page.skin:
1: <?xml version="1.0"?>
2: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3: "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4:
5: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
6: <head>
7: <title><% response.title %></title>
8: <meta http-equiv="Content-Type" content="text/html" />
9: <meta name="MSSmartTagsPreventParsing" content="TRUE" />
10: <link rel="alternate" type="text/xml" title="XML" href="<% site.url %>rss" />
11: <script type="text/javascript" src="<% site.url %>main.js"></script>
12: <link rel="stylesheet" type="text/css" title="CSS Stylesheet" href="<% site.url %>main.css" />
13: </head>
14:
15: <body>
16:
17: <table class="main" cellspacing="0" cellpadding="0">
18: <tr>
19: <td class="header"><a href="<% site.url %>" title="<% site.tagline %>"><% site.title %></a></td>
20: </tr>
21: </table>
22:
23: <table class="main">
24: <tr>
25: <td class="center"><% response.message prefix='<div class="message">' suffix='</div><br />' %>
26: <% response.body %></td>
27: <td class="right">
28: <div class="box">
29: <% site.age prefix="Online for " show="days" suffix=" days<br />" %>
30: <% site.lastupdate prefix="Last update: " format="short" %>
31: </div>
32:
33: <div class="boxheader">status</div>
34: <div class="box"><% site.loginstatus %></div>
35:
36: <div class="boxheader">menu</div>
37: <div class="box">
38: ... <% site.link to="main" text="home" %><br />
39: ... <% site.link to="topics" text="topics" %><br />
40: ... <% site.link to="images/topics" text="galleries" %><br />
41: <% site.navigation modules="all" %>
42: <% site.navigation for="contributors" modules="all" %>
43: <% site.navigation for="admins" modules="all" %><br />
44: ... <a href="<% root.url %>"><% root.title suffix=" " %>home</a>
45: </div>
46:
47: <div class="boxheader">search</div>
48: <div class="box"><% site.skin name="searchbox" %></div>
49:
50: <div class="boxheader">calendar</div>
51: <div class="box"><% site.calendar %></div>
52:
53: <div class="boxheader">recent updates</div>
54: <div class="box"><% site.history %></div>
55:
56: <div class="boxline"></div><br />
57: <div class="box"><% site.xmlbutton %><br /><br />
58: <% logo name="smallchaos" %></div>
59:
60: </td>
61: </tr>
62: </table>
63:
64: </body>
65: </html>
66:
|