My songbook
Table of contents
{% for artist in library.artists | sort(attribute='name') %}
-
{{ artist.name }}
{% for song in artist.songs | sort(attribute='title') %}
- {{ song.title }}
{% endfor %}
{% endfor %}
{% for artist in library.artists | sort(attribute='name') %}
{{ artist.name }}
{% for song in artist.songs | sort(attribute='title') %}
{{ song.title }} ({{ artist.name }})
{{song.content | song_content}}
{% endfor %}
{% endfor %}