eorzea-songbook/templates/nav.jinja
2023-06-06 18:46:12 +10:00

18 lines
336 B
Django/Jinja

{% extends "base.jinja" %}
{% block basecontent %}
<header>
<p> The header will be in here. For now, click <a href="{{ url_for('homepage') }}">here</a> to go back to the home page.</p>
</header>
{% block content %}{% endblock %}
<footer>
<p> The footer will be in here, when it's ready. </p>
</footer>
{% endblock basecontent %}