all repos — aaoth.xyz @ 07948640ab78b6a0cc97a6968ecea1ee36e9a680

aaoth.xyz website

_includes/navigation.html (view raw)

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