Sourcecode in Root/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="rss" />
11: <script type="text/javascript" src="<% root.url %>main.js"></script>
12: <link rel="stylesheet" type="text/css" title="CSS Stylesheet" href="<% root.url %>main.css" />
13: </head>
14:
15: <body>
16:
17: <table class="main" cellspacing="0" cellpadding="0">
18: <tr>
19: <td class="header"><% layout.image name="big" linkto="main"%></td>
20: </tr>
21: </table>
22:
23: <table class="main">
24: <tr>
25: <td class="center"><% response.message prefix='<span class="message">' suffix='</span><br /><br />' %>
26: <% response.body %></td>
27: <td class="right">
28: <div class="box">
29: <% now format="EEEE, dd.MM.yyyy, HH:mm" %>
30: <% root.loginstatus prefix="<br />" %>
31: </div>
32:
33: <div class="boxheader">menu</div>
34: <div class="box">
35: ... <a href="<% root.url %>"><% root.title suffix=" " %>home</a><br />
36: <% root.link to="new" text="create a new site" prefix="... " %>
37: </div>
38:
39: <% root.sysmgrnavigation %>
40:
41: <div class="boxheader">resources</div>
42: <div class="box">
43: ... <a href="http://project.antville.org/">project site</a><br />
44: ... <a href="http://macros.antville.org/">macro docs</a><br />
45: ... <a href="http://help.antville.org/">help</a>
46: </div>
47:
48: <div class="boxline"> </div>
49: <div class="box">
50: <% root.sitecounter no="no public sites" one="one public site" more=" public sites"%>... <% root.link to="list" %>
51: </div>
52:
53: <div class="box">
54: <% image name="/xmlbutton" linkto="rss" title="List of recently updated Antville sites in RSS format" %><br /><br />
55: <% logo name="smallstraight" %><br /><br />
56: Powered by<br />
57: <% image name="/hop" linkto="http://helma.org" %></div>
58:
59: </td>
60: </tr>
61: </table>
62:
63: </body>
64: </html>
65:
|