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