27 lines
677 B
HTML
27 lines
677 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.main_score() is not none %}
|
|
{% set score = tema.main_score() %}
|
|
{% 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>
|