all repos — aaoth.xyz @ a7a43fa5e99ebda7905604306ec2cf0b03c425f7

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>