dab-mechanic/templates/index.html

13 lines
253 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, count in articles %}
<li>
<a href="{{ url_for("article_page", enwiki=enwiki) }}">{{ enwiki }}
({{ count }} links)
</li>
2022-08-13 13:16:49 +01:00
{% endfor %}
</ul>
2022-08-15 18:00:22 +01:00
{% endblock %}