aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/templates/static
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-02-06 23:34:08 -0800
committerbnewbold <bnewbold@manus.(none)>2007-02-06 23:34:08 -0800
commitb88372f0327976c31e6b508b26729bab60743f82 (patch)
tree16958c4395bc881399e475a927162e8837d67310 /bn_django/templates/static
parentf025a9f65ecd76e4442ce62684218ecb81506c9b (diff)
downloadbnewnet-b88372f0327976c31e6b508b26729bab60743f82.tar.gz
bnewnet-b88372f0327976c31e6b508b26729bab60743f82.zip
photos app roughed in, style tweaked
TODO: search code
Diffstat (limited to 'bn_django/templates/static')
-rw-r--r--bn_django/templates/static/directory_index (renamed from bn_django/templates/static/directory_index.html)7
1 files changed, 6 insertions, 1 deletions
diff --git a/bn_django/templates/static/directory_index.html b/bn_django/templates/static/directory_index
index 6df279d..61e7f02 100644
--- a/bn_django/templates/static/directory_index.html
+++ b/bn_django/templates/static/directory_index
@@ -1,13 +1,18 @@
{% extends "base.html" %}
{% block title %}
-<h1>Index of {{ directory }}</h1>
+<h1>Index of /{{ directory }}</h1>
{% endblock %}
{% block content %}
+<br />
<ul>
{% for f in file_list %}
<li><a href="{{ f }}">{{ f }}</a></li>
{% endfor %}
</ul>
+<br />
+<br />
+<br />
+
{% endblock %}