Files
Old_Website/localdocs/_includes/navigation.html
WickedJack99 92a9652891 0073
2022-09-29 09:46:40 +02:00

13 lines
893 B
HTML

<div id="navbarTop" class="w3-bar w3-top w3-black">
{% for item in site.data.navigation %}
<a href="{{ item.link }}" {% if page.url == item.link %} class="current" {% endif %} class="w3-bar-item w3-button">{{ item.name }}</a>
{% endfor %}
{% for item in site.data.socialMedia %}
<a href="{{ item.link }}" target="_blank" {% if page.url == item.link %} class="current" {% endif %} class="w3-bar-item w3-button w3-right">{{ item.icon }}</a>
{% endfor %}
{% for item in site.data.eMail %}
<a href="mailto: {{ item.link }}" {% if page.url == item.link %} class="current" {% endif %} class="w3-bar-item w3-button w3-right">{{ item.icon }}</a>
{% endfor %}
<button class="w3-bar-item w3-button w3-right" type="submit"><i class="fa fa-search"></i></button>
<input class="w3-bar-item w3-input w3-right" type="text" placeholder="Search..">
</div>