mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-24 10:04:09 -05:00
26 lines
767 B
Plaintext
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 %}
|
|
​
|
|
{% endif %}
|
|
</small>
|
|
</p>
|
|
</nav>
|