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