Add navbar to index page

This commit is contained in:
Edward Betts 2022-08-15 18:00:22 +01:00
parent ba0eccc8d6
commit 8b5dddca7e

View file

@ -1,15 +1,9 @@
<!doctype html> {% extends "base.html" %}
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body> {% block content %}
<ul> <ul>
{% for enwiki in articles %} {% for enwiki in articles %}
<li><a href="{{ url_for("article_page", enwiki=enwiki) }}">{{ enwiki }}</li> <li><a href="{{ url_for("article_page", enwiki=enwiki) }}">{{ enwiki }}</li>
{% endfor %} {% endfor %}
</ul> </ul>
</body> {% endblock %}
</html>