From ca5b85fb744221588859f3639ba7e4da0bc82649 Mon Sep 17 00:00:00 2001 From: mjfernez Date: Mon, 7 Jun 2021 00:03:12 -0400 Subject: first commit --- templates/index.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 templates/index.html (limited to 'templates/index.html') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..7e815e2 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,26 @@ +{% extends 'base.html' %} +{% block content %} + +

{{ description }}

+ +{% if dirs %} +

Topics

+{% for d in dirs %} +
  • {{ d }}
  • +{% endfor %} +{% endif %} + +{% if files %} +

    File Listing

    +{% for f in files %} +
  • {{ f }}
  • +{% endfor %} +{% endif %} + +{% if links %} +{% for l in links %} +
  • {{l.split(',')[0]}}
  • +{% endfor %} +{% endif %} + +{% endblock %} -- cgit v1.2.3