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