aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--template/index.tt4
-rw-r--r--template/index_user.tt1
2 files changed, 2 insertions, 3 deletions
diff --git a/template/index.tt b/template/index.tt
index bf0c501..829ee72 100644
--- a/template/index.tt
+++ b/template/index.tt
@@ -2,9 +2,7 @@
[% INCLUDE head.tt %]
<body>
<h1>index</h1>
-[% FOR i IN directories %]
-[% i %]
-[% END %]
+<ul>[% FOR i IN directories %]<li>[% i %]</li>[% END %]</ul>
</body>
[% INCLUDE foot.tt %]
</html>
diff --git a/template/index_user.tt b/template/index_user.tt
index 2cbfbed..886beec 100644
--- a/template/index_user.tt
+++ b/template/index_user.tt
@@ -2,6 +2,7 @@
[% INCLUDE head.tt %]
<body>
<h1>index_user</h1>
+<ul>[% FOR i IN directories %]<li>[% i %]</li>[% END %]</ul>
</body>
[% INCLUDE foot.tt %]
</html>