theread.me/_includes/header.html

21 lines
533 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>
2016-11-15 20:37:11 +00:00
<a href='{{ site.repo }}'>write</a>
2016-11-09 12:27:01 +00:00
<a href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">rss</a>
2015-03-29 06:14:53 +00:00
</nav>
</header>