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