website/_includes/nav.html

13 lines
263 B
HTML
Raw Normal View History

2016-03-14 04:43:55 +01:00
2016-03-14 05:35:46 +01:00
<div class="nav">
2016-03-14 04:43:55 +01:00
<h1>{{ site.name }}</h1>
<h2>{{ site.description }}</h2>
2016-03-14 05:08:18 +01:00
<ul>
{% for item in site.data.navigation %}
<li>
<a href="{{ item.url }}">{{ item.title }}</a>
</li>
{% endfor %}
</ul>
2016-03-11 04:20:09 +01:00
</div>