csv-library-website/library/templates/index.html

10 lines
163 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block main %}
<ul>
{% for id, title in publications %}
<li><a href="{{ id }}">{{ title }}</a></li>
{% endfor%}
</ul>
{% endblock %}