12 lines
No EOL
358 B
Text
12 lines
No EOL
358 B
Text
{% macro simple(index, data, content) %}
|
|
<article class="songbook_song">
|
|
<header>
|
|
<h2>{{ data.title }}</h2>
|
|
<h6>{{ data.releaseDate }}</h6>
|
|
<p>{{ data.description }}</p>
|
|
</header>
|
|
{# <pre class="pre_code"><code>{{ content }}</code></pre> #}
|
|
{{ content | safe }}
|
|
<footer>{{ index }}</footer>
|
|
</article>
|
|
{% endmacro %} |