Skip to content

Instantly share code, notes, and snippets.

@artlung
Created March 29, 2025 14:40
Show Gist options
  • Save artlung/b79f928b45b85c177656e6bdc9ce64e0 to your computer and use it in GitHub Desktop.
Save artlung/b79f928b45b85c177656e6bdc9ce64e0 to your computer and use it in GitHub Desktop.
<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