blob: 8242e5c28bcc915c3fb0907e52a4d974e8ecf1b4 (
plain) (
tree)
|
|
---
layout: default
title: titles.concerts
---
{% tf concerts/intro.md %}
{% for concert in site.concerts %}
<article class="concert-listing">
<header>
<date class="date"><a href="{{ concert.url | prepend: site.base_url }}">{{ concert.date | date: "%d/%m-%Y" }}</a></date>
<span class="city">{{ concert.city }}</span>
<span class="venue">{{ concert.venue }}</span>
<span class="comment">{{ concert.comment }}</span>
</header>
<section class="bands">
{{ concert.bands | join: ", " }}
</section>
</article>
{% endfor %}
|