Add menu links

This commit is contained in:
Oliver Davies 2021-09-07 13:01:41 +01:00
parent 6881587450
commit da534d3210
2 changed files with 13 additions and 0 deletions

View file

@ -1,5 +1,11 @@
{% extends 'app' %}
{% block body %}
<nav>
{% for link in site.main_menu %}
<a href="{{ link.href }}">{{ link.title }}</a>
{% endfor %}
</nav>
{% block content %}{% endblock %}
{% endblock %}