blob: 5a51aeef92971fe86314a8b4f685d621a0d4c39b (
plain) (
tree)
|
|
---
layout: default
title: titles.concerts
---
{% tf concerts/intro.md %}
<h2>Kommende konserter</h2>
{% for concert in site.concerts %}
{% if concert.date >= site.time %}
<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>
{% endif %}
{% endfor %}
<h2>Tidligere konserter:</h2>
{% for concert in site.concerts %}
{% if concert.date < site.time %}
<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>
{% endif %}
{% endfor %}
|