convert Catalyst app to use KiokuDB backend
[scpubgit/stemmatology.git] / TreeOfTexts / root / src / frontpage.tt
1 [% BLOCK js %]
2 [% END %]
3
4     <h2>Choose a text to examine</h2>
5     <div id="text_list">
6       <ul>
7 [% SET i = 0 -%]
8 [% FOREACH t IN texts -%]
9         <li>[% t.name %] | <a href="relationships?textid=[% t.id %]">Relationship mapper</a>
10 [% IF t.has_stemma -%]
11          | <a href="stexaminer?textid=[% t.id %]">Stexaminer</a>
12 [% END -%]</li>
13 [% i = i + 1 -%]
14 [% END -%]
15      </table>
16     </div>