2022-07-21 17:20:07 +02:00
{% extends "base.twig" %}
{% block header %}
<header>
<div class="sidebar">
<nav class="sidebar__nav" aria-label="Menu">
{% if exhibitions is not empty %}
<ul class="sidebar__nav-menu">
{% for exhibition in exhibitions %}
<li class="sidebar__nav-item">
2022-07-22 17:53:26 +02:00
{% if exhibition .external_link == 'false' %}
2022-07-26 17:03:58 +02:00
<a class="sidebar__nav-link sidebar__nav-link--internal" href=" {{ exhibition .url }} " target="exhibition"> {{ exhibition .title }} </a>
2022-07-22 17:53:26 +02:00
{% else %}
<a class="sidebar__nav-link sidebar__nav-link--external" href=" {{ exhibition .url }} " target="_blank"> {{ exhibition .title }} </a>
2022-07-21 17:20:07 +02:00
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
</nav>
<div class="sidebar__social">
2022-07-26 17:03:58 +02:00
<a class="sidebar__social-link" href=" {{ instagram }} " target="_blank" aria-label="Show {{ site .title }} 's Instagram profile">
<svg class="sidebar__instagram-icon" aria-hidden="true" viewBox="0 0 128 128" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M 128 0 L 0 0 L 0 128 L 128 128 L 128 0 Z M 119.874 119.874 L 8.126 119.874 L 8.126 8.126 L 119.874 8.126 L 119.874 119.874 Z"/>
<path d="M64,93c16,0,29-13,29-29S80,35,64,35S35,48,35,64S48,93,64,93z M64,43c11.6,0,21,9.4,21,21s-9.4,21-21,21s-21-9.4-21-21 S52.4,43,64,43z"/>
<rect height="10" width="10" x="98" y="20"/>
2022-07-21 17:20:07 +02:00
</svg>
</a>
2022-07-22 17:53:26 +02:00
<a class="sidebar__social-link" href="mailto: {{ email }} " target="_blank" aria-label="Write an email to {{ site .title }} ">
2022-07-26 17:03:58 +02:00
<svg class="sidebar__email-icon" aria-hidden="true" viewBox="0 0 48 48" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M 0 48 L 0 0 L 48 0 L 48 48 L 0 48 Z M 24 24.35 L 3.1 7.126 L 3.1 44.5 L 44.9 44.5 L 44.9 7.126 L 24 24.35 Z M 24 20.35 L 44.9 3.5 L 3.1 3.5 L 24 20.35 Z M 3.1 7.126 L 3.1 3.5 L 3.1 7.126 Z"/>
2022-07-21 17:20:07 +02:00
</svg>
</a>
</div>
</div>
</header>
{% endblock %}
{% block main %}
<main>
2022-07-22 17:53:26 +02:00
<section class="exhibition-section">
2022-07-26 17:03:58 +02:00
<iframe class="exhibition" name="exhibition" src=""></iframe>
2022-07-21 17:20:07 +02:00
</section>
</main>
{% endblock %}