dab-mechanic/templates/index.html

16 lines
261 B
HTML
Raw Normal View History

2022-08-13 13:16:49 +01:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<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>
</body>
</html>