Add url based title to each exhibition

This commit is contained in:
Paul Nicoué 2022-07-20 17:05:13 +02:00
parent 35351bc709
commit 2b79d762b3
2 changed files with 22 additions and 6 deletions

View file

@ -42,14 +42,14 @@
<div class="header-bar">
<nav class="header-bar__nav" aria-label="Menu">
{% if site.homepage.exhibitions is not empty %}
{% if exhibitions is not empty %}
<ul class="header-bar__nav-menu">
{% for exhibition in site.homePage.exhibitions.toStructure %}
{% for exhibition in exhibitions %}
<li class="header-bar__nav-item">
{% if exhibition.external_link.toBool == false %}
<a href="{{ exhibition.url }}" target="iframe">{{ exhibition.url }}</a>
{% elseif exhibition.external_link.toBool == true %}
<a href="{{ exhibition.url }}" target="_blank">{{ exhibition.url }}</a>
{% if exhibition.external_link == false %}
<a href="{{ exhibition.url }}" target="iframe">{{ exhibition.title }}</a>
{% elseif exhibition.external_link == true %}
<a href="{{ exhibition.url }}" target="_blank">{{ exhibition.title }}</a>
{% endif %}
</li>
{% endfor %}