feat: modal + concert notes

This commit is contained in:
Cory Dransfeldt 2024-08-03 13:32:53 -07:00
parent 8479ab9219
commit 07cea7fafe
No known key found for this signature in database
8 changed files with 102 additions and 3 deletions

View file

@ -33,6 +33,10 @@ permalink: "/music/concerts/{% if pagination.pageNumber > 0 %}{{ pagination.page
<li>
{{ artistName }} on <strong class="highlight-text">{{ concert.date | date: "%B %e, %Y" }}</strong>
{% if venue %} at {{ venue }}{% endif %}
{% if concert.notes %}
{% assign notes = concert.notes | prepend: "### Notes\n" | markdown %}
{% render "partials/blocks/modal.liquid", label:"Concert info", icon:"info-circle", content:notes, id:concert.id %}
{% endif %}
</li>
{% endfor %}
</ul>