diff options
Diffstat (limited to 'blog/concerts.html')
-rw-r--r-- | blog/concerts.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/blog/concerts.html b/blog/concerts.html index e7f9e1f..8242e5c 100644 --- a/blog/concerts.html +++ b/blog/concerts.html @@ -4,3 +4,17 @@ 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 %} |