mirror of
https://github.com/stashapp/website.git
synced 2026-04-12 17:31:20 -05:00
16 lines
628 B
HTML
Executable File
16 lines
628 B
HTML
Executable File
<nav>
|
|
<a class="nav-toggle" id="open-nav" href="#">☰</a>
|
|
<a class="editor-link btn" href="cloudcannon:collections/_data/navigation.yml" class="btn"><strong>✎</strong> Edit navigation</a>
|
|
{% for link in site.data.navigation %}
|
|
{% assign class = "" %}
|
|
{% if link.highlight %}
|
|
{% assign class = class | append: " highlight" %}
|
|
{% endif %}
|
|
|
|
{% if link.link == page.url %}
|
|
{% assign class = class | append: " active" %}
|
|
{% endif %}
|
|
<a href="{% include relative-src.html src=link.link %}" class="{{ class }}" {% if link.new_window %}target="_blank"{% endif %}>{{ link.name }}</a>
|
|
{% endfor %}
|
|
</nav>
|