Files
folkugat-web/folkugat_web/assets/templates/fragments/sessio/set/tema.html
2025-03-21 19:42:43 +01:00

26 lines
632 B
HTML

<h3 class="text-center text-3xl p-4">
{{ tema.title }}
<a class="text-beige"
º href="/tema/{{ tema.id }}">
<i class="fa fa-chevron-right px-2" aria-hidden="true"></i>
</a>
</h3>
<div class="mx-12 text-left">
{% if tema.score() is not none %}
{% include "fragments/tema/score.html" %}
{% endif %}
{% if tema.lyrics %}
{% set lyric = tema.lyrics[0] %}
<div>
<h4 class="mt-4 text-xl text-beige">Lletra</h4>
<hr class="h-px mt-1 mb-3 bg-beige border-0">
<div class="text-center">
{{ lyric.content.replace('\n', '<br>') | safe }}
</div>
</div>
{% endif %}
</div>