Files
willfullyobtuse.com/templates/partials/nav.html
James Brechtel 1f7fb99be4
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Adds nav with /home h-card
2022-11-21 08:48:23 -05:00

22 lines
663 B
HTML

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