Add navbar

This commit is contained in:
Oliver Davies 2021-06-30 08:00:00 +01:00
parent fd37030d03
commit b22428ebae
3 changed files with 36 additions and 2 deletions

View file

@ -1,5 +1,9 @@
{% extends 'app' %}
{% block body %}
{% block content %}{% endblock %}
{% include 'navbar' %}
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
{% endblock %}

View file

@ -1,6 +1,6 @@
{% extends "default" %}
{% block body %}
{% block content_wrapper %}
<h1>{{ page.title }}</h1>
{{ parent() }}