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>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
</head>
{% extends "base.html" %}
<body>
{% block content %}
<ul>
{% for enwiki in articles %}
<li><a href="{{ url_for("article_page", enwiki=enwiki) }}">{{ enwiki }}</li>
{% endfor %}
</ul>
</body>
</html>
{% endblock %}