aboutsummaryrefslogtreecommitdiffstats
path: root/_includes/navigation.html
blob: 638b75e418668c1ff6298b6143e696ff865fbe50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<nav>
    <img src="/assets/img/aaoth-logo.png" alt="aaoth website logo"
         width="376">
    <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>