theread.me/_includes/header.html

27 lines
748 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>
2019-03-24 03:54:31 +00:00
<p class='categories'>
{% for collection in site.collections %}
{% if collection.title %}
<a href="{{ collection.path | prepend: site.baseurl }}">{{ collection.title }}</a>
{% endif %}
{% endfor %}
</p>
<p>
<a href='mailto:{{ site.email }}'>email</a>
<a href='https://github.com/mdibaiee'>github</a>
2019-06-22 06:59:59 +00:00
<a href='https://www.goodreads.com/mdibaiee'>goodreads</a>
2019-03-24 03:54:31 +00:00
<a href='https://www.linkedin.com/in/mdibaiee/'>linkedin</a>
<a href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">feed</a>
</p>
2015-03-29 06:14:53 +00:00
</nav>
</header>