<div class=“article-format”> {% unless page.no_header %}

<header>
  <h1 class="entry-title">{% include post/title.html %}</h1>
  {% unless page.meta == false %}
    <p class="meta">
      {% include post/author.html %} -
      {% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %} -
      {% include post/categories.html %}
      {% if site.disqus_short_name and page.comments != false and post.comments != false and site.disqus_show_comment_count == true %}
       | <a href="{% if index %}{{ root_url }}{{ post.url }}{% endif %}#disqus_thread">Comments</a>
      {% endif %}
    </p>
  {% endunless %}
</header>

{% endunless %} {% if index %}

<div class="entry-content">{{ content | excerpt }}</div>
{% capture excerpted %}{{ content | has_excerpt }}{% endcapture %}
{% if excerpted == 'true' %}
  <footer>
    <a rel="full-article" href="{{ root_url }}{{ post.url }}">{{ site.excerpt_link }}</a>
  </footer>
{% endif %}

{% else %}

<div class="entry-content">{{ content }}</div>

{% endif %} {% unless index %}

<footer>
  <p class="meta">
    {% include post/author.html %} -
    {% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %} -
    {% include post/categories.html %}
  </p>
  {% if page.previous.url %}
    <a class="pull-left" href="{{page.previous.url}}" title="Previous Post: {{page.previous.title}}">&laquo; {{page.previous.title}}</a>
  {% endif %}
  {% if page.next.url %}
    <a class="pull-right" href="{{page.next.url}}" title="Next Post: {{page.next.title}}">{{page.next.title}} &raquo;</a>
  {% endif %}
</footer>

{% endunless %} </div>