8 lines
467 B
HTML
8 lines
467 B
HTML
<div id="navbarTop" class="w3-bar 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 }}" {% if page.url == item.link %} class="current" {% endif %} class="w3-bar-item w3-button w3-right">{{ item.icon }}</a>
|
|
{% endfor %}
|
|
</div> |