dab-mechanic/templates/index.html

10 lines
208 B
HTML
Raw Normal View History

2022-08-15 18:00:22 +01:00
{% extends "base.html" %}
2022-08-13 13:16:49 +01:00
2022-08-15 18:00:22 +01:00
{% block content %}
2022-08-13 13:16:49 +01:00
<ul>
{% for enwiki in articles %}
2022-08-14 17:44:07 +01:00
<li><a href="{{ url_for("article_page", enwiki=enwiki) }}">{{ enwiki }}</li>
2022-08-13 13:16:49 +01:00
{% endfor %}
</ul>
2022-08-15 18:00:22 +01:00
{% endblock %}