mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-29 02:24:16 -05:00
Use conventional hash markers for heading permalinks, frame the site identity with decorative stars, and render constellation points as luminous star glyphs while preserving their 48px controls and interaction behavior. Assisted-by: pi (gpt-5.6-sol)
26 lines
701 B
Plaintext
26 lines
701 B
Plaintext
<a href="/" rel="home"><span aria-hidden="true">✦</span> Gabriel Fontes <span aria-hidden="true">✦</span></a>
|
|
<nav>
|
|
<ul>
|
|
{% for item in site.data.navigation %}
|
|
<li>
|
|
<a
|
|
{% if page.nav_current == item.link or page.url == item.link %}
|
|
aria-current="page"
|
|
{% endif %}
|
|
{% if item.class %}
|
|
class="{{ item.class }}"
|
|
{% endif %}
|
|
{% if item.label %}
|
|
aria-label="{{ item.label }}"
|
|
{% endif %}
|
|
href="{{ item.link }}"
|
|
>
|
|
{% if item.text %}
|
|
{{ item.text | downcase }}
|
|
{% endif %}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|