dab-mechanic/templates/index.html
2022-08-14 17:44:07 +01:00

16 lines
261 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<ul>
{% for enwiki in articles %}
<li><a href="{{ url_for("article_page", enwiki=enwiki) }}">{{ enwiki }}</li>
{% endfor %}
</ul>
</body>
</html>