2021-06-15 03:31:51 +02:00
|
|
|
{% if site.data.header-links %}
|
|
|
|
<nav>
|
|
|
|
<div class="wrapper">
|
|
|
|
{% assign headerlinks = site.data.header-links %}
|
|
|
|
{% for headerlink in headerlinks %}
|
|
|
|
{% assign hkey = headerlink | first %}
|
|
|
|
<a href="{{headerlinks[hkey].href}}" title="{{headerlinks[hkey].title}}">{{headerlinks[hkey].title}}</a>
|
|
|
|
{% if hkey != 'pictures' %}
|
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
<div id="navView" class="blank"></div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
{% endif %}
|