dab-mechanic/templates/index.html
2022-08-13 13:16:49 +01:00

16 lines
256 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", enwiki=enwiki) }}">{{ enwiki }}</li>
{% endfor %}
</ul>
</body>
</html>