eorzea-songbook/templates/home.html

13 lines
298 B
HTML

{% extends 'base.html' %}
{% block title %}Home{% endblock %}
{% block nav %}{% endblock %}
{% block content %}
<h1>The Eorzea Songbook</h1>
<a href="{{ url_for('songindex') }}">View Songs</a>
<a href="{{ url_for('motifindex') }}">View Motifs</a>
{% block footer %}{% endblock %}
{% endblock %}