Files
Gabriel Fontes 7ff867ed2f feat(projects/website): adopt star glyph motif
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)
2026-08-12 03:26:08 -03:00

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>