all repos — aaoth.xyz @ b06fbbfe86cb2207db595201c403334288d5cbb6

aaoth.xyz website

_includes/navigation.html (view raw)

 1<nav>
 2    <img src="/assets/img/aaoth-logo.png" alt="aaoth website logo"
 3         width="376">
 4    <ul>
 5        {%- for item in site.data.navigation -%}
 6            <li>
 7                <a href="{{ item.link }}"
 8                   {% if page.url == item.link %}class="current"{% endif %}>
 9                    {{ item.name }}
10                </a>
11            </li>
12        {%- endfor -%}
13    </ul>
14    <hr>
15</nav>