Files
Foundry/projects/website/_src/_includes/nav.html.liquid
T

26 lines
767 B
Plaintext

<nav>
<div class="title">{ <a href="/">Gabriel Fontes</a> }</div>
{% assign current = page.url | remove: "index.html" %}
<ul>
<li class="colorscheme">
<a {% if current == "/colorscheme/" %} aria-current="page" {% endif %} aria-label="Change color scheme" href="/colorscheme"></a>
</li>
{% for item in site.data.navigation %}
<li>
<a {% if current == item.link %} aria-current="page" {% endif %} href="{{ item.link }}">
{{ item.name | downcase }}
</a>
</li>
{% endfor %}
</ul>
<p>
<small>
{% if page.has_gemini %}
Also available <a href="gemini://{{ site.domain }}{{ page.url | replace: ".html", ".gmi" }}">on gemini</a>
{% else %}
&#8203
{% endif %}
</small>
</p>
</nav>