aboutsummaryrefslogtreecommitdiffstats
path: root/_includes/navigation.html
blob: b92bf7f438bb1e411f02114185a56e6cfd47c693 (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" height="102">
    <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>