]> git.decadent.org.uk Git - maypole.git/blob - ex/fancy_example/templates/factory/frontpage
tested and it seems to work
[maypole.git] / ex / fancy_example / templates / factory / frontpage
1 [%#
2
3 =head1 frontpage
4
5 This is the frontpage for your Maypole application.
6 It shows a list of all tables it is allowed to display.
7
8 =cut
9
10 #%]
11 [% INCLUDE header %]
12 <div id="title">
13     [% config.application_name || "A poorly configured Maypole application" %]
14 </div>
15 <div id="frontpage_list">
16 <ul>
17 [% FOR table = config.display_tables %]
18     <li>
19         <a href="[% base %]/[%table%]/list">List by [%table %]</a>
20     </li>       
21 [% END %]
22 </ul>
23 </div>
24
25 [% INCLUDE maypole %]
26
27 [% INCLUDE footer %]