website/_includes/header.html~

12 lines
231 B
HTML
Raw Normal View History

<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>