Files
willfullyobtuse.com/templates/partials/nav.html
James Brechtel 874a82e769
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Fixes rel attribute
2022-11-22 07:45:19 -05:00

20 lines
551 B
HTML

<header>
<div class="main">
<div class="socials">
{% for social in config.extra.socials %}
<a href="{{ social.url }}" class="social" rel="me">
<img alt={{ social.name }} src="/social_icons/{{ social.icon }}.svg">
</a>
{% endfor %}
</div>
<a class="h-card" href={{ config.base_url }}>{{ config.title }}</a>
</div>
<nav>
{% for menu in config.extra.menu %}
<a href={{ menu.url }} style="margin-left: 0.7em">{{ menu.name }}</a>
{% endfor %}
</nav>
</header>