website/_includes/header.html

12 lines
230 B
HTML
Raw Permalink Normal View History

2016-04-09 08:23:47 +02:00
<div class="header">
<h1>{{ site.name }}</h1>
<ul>
{% for item in site.data.navigation %}
<li>
<a href="{{ item.url }}">{{ item.title }}</a>
</li>
{% endfor %}
</ul>
</div>