theread.me/_includes/header.html

20 lines
494 B
HTML
Raw Normal View History

2015-03-29 06:14:53 +00:00
<header class="site-header">
<h1>
<a class='site-title' href='{{ site.baseurl }}/'>
{{ site.title }}
</a>
</h1>
<nav>
2016-11-09 12:27:01 +00:00
{% 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>
2019-03-23 16:06:28 +00:00
<a href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">feed</a>
2015-03-29 06:14:53 +00:00
</nav>
</header>