blob: e27fb35e011a919fbeec74d29f29b72f9b75fa2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
<html>
[% title = "${name} Index" %]
[% INCLUDE head.tt %]
<body>
<h1>[% title %]</h1>
<ul>[% FOR i IN directories %]<li><a href="/[% name %]/[% i %]">/[% name %]/[% i %]</a></li>[% END %]</ul>
</body>
[% INCLUDE foot.tt %]
</html>
|