]> git.decadent.org.uk Git - maypole.git/blobdiff - templates/factory/frontpage
Maypole::Application supports Maypole::HTTPD (which needs a patch).
[maypole.git] / templates / factory / frontpage
index 407fc6e6d502d2753266d1def2d3dbd6a3e5bed5..ac47269519d5a139266e903387f810278326f5bb 100644 (file)
@@ -9,17 +9,19 @@ It shows a list of all tables it is allowed to display.
 
 #%]
 [% INCLUDE header %]
-<h2>
+<div id="title">
     [% config.application_name || "A poorly configured Maypole application" %]
-</h2>
-<table border="0" width="70%">
+</div>
+<div id="frontpage_list">
+<ul>
 [% FOR table = config.display_tables %]
-    <tr>
-        <td>
-            <a href="[%table%]/list">List by [%table %]</a>
-        </td>
-    </tr>
+    <li>
+        <a href="[% base %]/[%table%]/list">List by [%table %]</a>
+    </li>      
 [% END %]
-</table>
-<br/>
+</ul>
+</div>
+
+[% INCLUDE maypole %]
+
 [% INCLUDE footer %]