<header>
  {% if index %}
  <h1 class="beta">
    <a href="{{ post.url }}">{{ post.title }}</a>
  </h1>
  {% else %}
  <h1 class="title indent">{{ page.title }}</h1>
  {% endif %}

  {% unless post.meta == false %}
  <div class="meta clearfix">
    {% include blog/post/date.html %}{{ time }}
    {% include post/author.html %}
    <span><i class='icon-time'></i> {{ post.content | reading_time_as_s }} reading time</span>
    {% include blog/post/tags.html %}
    {% if page.comments != false and post.comments != false %}
      <a class='comments'
         href="{% if index %}{{ post.url }}{% endif %}#post-comments"
         >Comments</a>
    {% endif %}
  </div>
  {% endunless %}
</header>

{% if index %}
  <div class="entry-content clearfix">
    {{ post.excerpt }}
    {% if post.content contains site.excerpt_separator %}
      <a class="btn pull-right" href="{{ post.url }}#read-more">{{ site.excerpt_link }}</a>
    {% endif %}
  </div>
{% else %}
  {{ post.content | replace: site.excerpt_separator, '<a name="read-more"></a>' }}
{% endif %}