{% 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 %}