aboutsummaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/index.html b/templates/index.html
index 714db1c..c8356fe 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,19 +1,19 @@
{% extends 'base.html' %}
{% block content %}
-
+<center>
{% if description %}
{% include cur_path + '/.description' %}
{% endif %}
{% if dirs %}
-<h3>Topics</h3>
+<h3 class="center">Topics</h3>
{% for d in dirs %}
<li><a href="{{ cur_dir }}{{ d }}">{{ d }}</a></li>
{% endfor %}
{% endif %}
{% if files %}
-<h3>File Listing</h3>
+<h3 class="center">File Listing</h3>
{% for f in files %}
<li><a href="{{ cur_dir }}{{ f }}">{{ f.rstrip('!') }}</a></li>
{% endfor %}
@@ -24,5 +24,5 @@
<li><a href="{{ l.split(',')[1] }}" target="_blank" rel="noopener noreferrer">{{l.split(',')[0]}}</a></li>
{% endfor %}
{% endif %}
-
+</center>
{% endblock %}