Created
March 29, 2025 14:40
-
-
Save artlung/b79f928b45b85c177656e6bdc9ce64e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section class="cassette-mix" id='{{ mixtape_id }}'> | |
<h2><a href='{{ mixtape_link }}'><span>{{ mixtape_title }}</span> <span>{{ mixtape_subhead }}</span></a></h2> | |
<p style='text-align: center;'>{{ mixtape_subtitle }}</p> | |
{% for side in sides %} | |
<div class="cassette__side"> | |
<h3>{% if side.cassette_name %}{{ side.cassette_name }} {% endif %}{{ side.name }}</h3> | |
<ol> | |
{% for track in side.tracks %} | |
<li><span class='p-name'>{{ track.p_name }}</span>{% if track.p_author %}<span class='p-author'>{{ track.p_author | nl2br }}</span>{% endif %}</li> | |
{% endfor %} | |
{% if side.nota_bene %} | |
<li class='nota-bene'><span>{{ side.nota_bene | raw }}</span></li> | |
{% endif %} | |
</ol> | |
</div> | |
{% endfor %} | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment