Altessimo/songs/templates/songs/index.html

10 lines
215 B
HTML
Raw Normal View History

2020-12-16 17:36:29 +00:00
{% extends 'layouts/base.html' %}
{% block title %} Songs {% endblock %}
{% block content %}
<h1>Songs</h1>
<ul>
{% include 'components/song-table.html' with songs=songs %}
</ul>
{% endblock %}