You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
286 B

{% extends "layout.html" %}
{% block content %}
<div class="foldersindex">
{% block index %}
{% for each in index_dict %}
{% set address = "/description?id=" + each %}
<a href={{address}}>{{index_dict[each]}}</a> <br />
{% endfor %}
{% endblock index %}
</div>
{% endblock %}