all repos — aaoth.xyz @ 1f26e4981ecd89ace20d9e329a629fd63dfc269a

aaoth.xyz website

_includes/navigation.html (view raw)

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