diff options
-rw-r--r-- | static/main.css | 3 | ||||
-rw-r--r-- | templates/index.html | 6 | ||||
m--------- | templates/site | 0 |
3 files changed, 9 insertions, 0 deletions
diff --git a/static/main.css b/static/main.css index 82a3645..1c95fbe 100644 --- a/static/main.css +++ b/static/main.css @@ -45,6 +45,9 @@ p { small { font-size: 75%; } +ul { + list-style-type: none; +} code { display: inline-block; font-size: 125%; diff --git a/templates/index.html b/templates/index.html index 103bc57..3c02659 100644 --- a/templates/index.html +++ b/templates/index.html @@ -7,22 +7,28 @@ {% if dirs %} <h3 class="center">Topics</h3> +<ul> {% for d in dirs %} <li><a href="{{ cur_dir }}{{ d }}" target="_self">{{ d }}</a></li> {% endfor %} +</ul> {% endif %} {% if files %} <h3 class="center">File Listing</h3> +<ul> {% for f in files %} <li><a href="{{ cur_dir }}{{ f }}" target="_self">{{ f.rstrip('!') }}</a></li> {% endfor %} +</ul> {% endif %} {% if links %} +<ul> {% for l in links %} <li><a href="{{ l.split(',')[1] }}" rel="noopener noreferrer">{{l.split(',')[0]}}</a></li> {% endfor %} +</ul> {% endif %} </center> {% endblock %} diff --git a/templates/site b/templates/site -Subproject 0b022cf277af6d3c4392f7f6dd3839998013748 +Subproject 002118777ddf2f81d2894d81bc7fadc64dbbc36 |