{% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
{{ bag('translation', this.alt, 'info') }}
{{ this.body }}
{{ bag('translation', this.alt, 'exhibitions') }}
{{ bag('translation', this.alt, 'lectures') }}
|
|
|
{% set lectures = site.query('/lectures').all() %}
{% for lecture in lectures %}
{% set gif = lecture.attachments.images.get(lecture.thumbnail) %}
{% if lecture.thumbnail %}{% endif %}{{ lecture.date|dateformat('Y-MM-dd') }} |
{{ lecture.title|truncate(70, False, ' ...', 0) }} |
{% set location = lecture.venue +", "+lecture.place+", "+lecture.country %}
{{ location|truncate(60, False, ' ...', 0)}} |
{{ lecture.comment|truncate(50, False, ' ...', 0)}} |
{% endfor %}
{{ bag('translation', this.alt, 'curatings') }}
{% endblock %}