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