{% extends 'base.html' %} {% block content %}
{% if description %} {% include cur_path + '/.description' %} {% endif %} {% if dirs %}

Topics

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

    File Listing

    {% for f in files %}
  • {{ f.rstrip('!') }}
  • {% endfor %} {% endif %} {% if links %} {% for l in links %}
  • {{l.split(',')[0]}}
  • {% endfor %} {% endif %}
    {% endblock %}