setto.basspistol.com/_includes/navigation.html

33 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2020-07-24 14:34:09 +02:00
<!-- Navigation -->
2020-08-03 21:40:11 +02:00
<div id="sticky" class="logo{% if page.collection == 'tracks' %} sticky{% endif %}">
2020-09-11 19:02:26 +02:00
<a id="logo" {% if page.url != '/' %}href="/"{% else %}href="#top"{% endif %}><img height="40px" src="{{ site.logo }}" alt="{{ site.title }} Logo" /></a>
2020-08-03 21:40:11 +02:00
<a href="#navbar" onclick="blurBody()" alt="Navigation Menu" title="Navigation Menu"><span
class="fas fa-bars navmenu"></span></a>
</div>
<div id="navbar" class="modalDialog">
<a href="#close" onclick="removeBlur()" alt="Close Menu" title="Close Menu">
<div id="closearea"> </div>
</a>
<nav>
<a href="#close" title="Close" onclick="removeBlur()" class="close-button">X</a>
<ul>
{% if page.url != '/' %}
2020-09-11 19:02:26 +02:00
<li><a href="{{ relBase }}/" onclick="removeBlur()" class="button">🏡 Home</a></li>
2020-08-03 21:40:11 +02:00
{% endif %}
{% for entry in site.data.navigation %}
{% if entry.external_site == false %}
2020-09-11 19:02:26 +02:00
<li><a href="{{ relBase }}{{ entry.url }}" onclick="removeBlur()" class="button">{{ entry.icon }} {{ entry.name }}</a></li>
2020-08-03 21:40:11 +02:00
{% else %}
2020-09-11 19:02:26 +02:00
<li><a href="{{ entry.url }}" target="_blank" rel="noopener" onclick="removeBlur()" class="button">{{ entry.icon }} {{ entry.name }}</a></li>
2020-08-03 21:40:11 +02:00
{% endif %}
{% endfor %}
2020-07-24 14:34:09 +02:00
2020-08-03 21:40:11 +02:00
</ul>
</nav>
</div>
2020-07-24 14:34:09 +02:00
<!-- End Navigation -->