rf-web/_includes/program/full-program.html
2020-09-11 11:43:26 +02:00

19 lines
712 B
HTML

<div>
<small class="textbox inline-block margin-32-bottom">All times are CEST (UTC+2 Europe/Zurich)</small>
{% include program/program-day.html date="2020-09-18" weekday=5 %}
{% include program/program-day.html date="2020-09-19" weekday=6 %}
{% include program/program-day.html date="2020-09-20" weekday=0 %}
<div class="content margin-64-bottom">
<h3 class="textbox inline-block">The gallery:</h3>
<ul class="prog-list margin-16-bottom block">
{% for event in events %}
{% assign format=event.format | downcase %}
{% if format == 'artwork' %}
{% include program/program-item.html event=event %}
{% endif %}
{% endfor %}
</ul>
</div>
</div>