<html>
+[% title = "404 Not Found" %]
[% INCLUDE head.tt %]
<body>
-<h1>404</h1>
+ <h1>[% title %]</h1>
+ <p>It's fucking over</p>
</body>
[% INCLUDE foot.tt %]
</html>
<head>
+<title>[% title %]</title>
</head>
<html>
+[% title = "Gorilla Nest" %]
[% INCLUDE head.tt %]
<body>
-<h1>index</h1>
-<ul>[% FOR i IN directories %]<li>[% i %]</li>[% END %]</ul>
+<h1>[% title %]</h1>
+<ul>[% FOR i IN directories %]<li><a href="/[% i %]/">/[% i %]/</a></li>[% END %]</ul>
</body>
[% INCLUDE foot.tt %]
</html>
<html>
+[% title = "${name} Index" %]
[% INCLUDE head.tt %]
<body>
-<h1>index_user</h1>
-<ul>[% FOR i IN directories %]<li>[% i %]</li>[% END %]</ul>
+<h1>[% title %]</h1>
+<ul>[% FOR i IN directories %]<li><a href="/[% name %]/[% i %]">/[% name %]/[% i %]</a></li>[% END %]</ul>
</body>
[% INCLUDE foot.tt %]
</html>
<html>
+[% title = "/${name}/${repository}" %]
[% INCLUDE head.tt %]
<body>
-<h1>repository</h1>
+ <h1>[% title %]</h1>
+ <p> Eventually this page will have something on it, RIGHT?!</p>
</body>
[% INCLUDE foot.tt %]
</html>