theread.me/_includes/header.html
2019-03-23 20:38:04 +04:30

20 lines
494 B
HTML

<header class="site-header">
<h1>
<a class='site-title' href='{{ site.baseurl }}/'>
{{ site.title }}
</a>
</h1>
<nav>
{% for collection in site.collections %}
{% if collection.title %}
<a href="{{ collection.path | prepend: site.baseurl }}">{{ collection.title }}</a>
{% endif %}
{% endfor %}
<a href='mailto:{{ site.email }}'>email</a>
<a href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">feed</a>
</nav>
</header>