]> git.decadent.org.uk Git - maypole.git/blob - templates/factory/frontpage
2677c26afaaf0c07dbb0f15a66e70a2b79df8e02
[maypole.git] / 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="[%table%]/list">List by [%table %]</a>
20     </li>       
21 [% END %]
22 </ul>
23 </div>
24
25 [% INCLUDE maypole %]
26
27 [% INCLUDE footer %]