dab-mechanic/templates/index.html

15 lines
278 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-17 13:34:17 +01:00
<div class="m-3">
<ol>
{% 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 %}
2022-08-17 13:34:17 +01:00
</ol>
</div>
2022-08-15 18:00:22 +01:00
{% endblock %}