22 lines
681 B
HTML
22 lines
681 B
HTML
<li class="flex flex-row items-start">
|
|
<div class="p-2 m-2 text-beige border border-beige rounded-md">
|
|
<a href="{{ link.url }}" target="_blank">
|
|
{% if link.subtype == LinkSubtype.SPOTIFY %}
|
|
{% include "icons/spotify.svg" %}
|
|
{% elif link.subtype == LinkSubtype.YOUTUBE %}
|
|
{% include "icons/youtube.svg" %}
|
|
{% elif link.subtype == LinkSubtype.PDF %}
|
|
{% include "icons/pdf.svg" %}
|
|
{% elif link.type == LinkType.AUDIO %}
|
|
{% include "icons/notes.svg" %}
|
|
{% else %}
|
|
{% include "icons/link.svg" %}
|
|
{% endif %}
|
|
</a>
|
|
</div>
|
|
<div class="my-2">
|
|
<p class="text-sm text-beige">Partitura</p>
|
|
<p>Hola</p>
|
|
</div>
|
|
</li>
|