23 lines
461 B
HTML
23 lines
461 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block basecontent %}
|
|
|
|
<header>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="{{ url_for('songindex') }}">Songs</a></li>
|
|
<li><a href="{{ url_for('homepage') }}">Home</a></li>
|
|
<li><a href="{{ url_for('motifindex') }}">Motifs</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
<footer>
|
|
|
|
<p> The footer will be in here, when it's ready. </p>
|
|
|
|
</footer>
|
|
|
|
{% endblock basecontent %} |