summaryrefslogtreecommitdiffstats
path: root/_includes/navigation.html
blob: eb836c7647b14cf504032df0031599adf3425c60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<nav>
	{% for item in site.data.navigation %}
		[<a
			href={{ item.link | remove: ".html" }}
			{% if page.url == item.link %} class=current {% endif %}
		>
			{{ item.name}}
		</a>]
	{% endfor %}
</nav>
<hr>