{% unless page.no_header %}

<div class="title">
  {% if index %}
      {% if post.external-url %}
              <h1 class="entry-title"><a href="{{ post.external-url }}">{% if site.titlecase %}{{ post.title | titlecase }} &#x21AA;{% else %}{{ post.title }}{% endif %}</a></h1>
      {% else %}
              <h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1>
      {% endif %}
  {% else %}
    <h1 class="entry-title"><a href="{{ page.external-url }}">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</a></h1>
  {% endif %}
</div>

{% endunless %} {% if index %}

<div class="entry-content">

  {{ post.excerpt }}

</div>
{% if post.excerpt != post.content %}
  <footer>
    <a rel="full-article" href="{{ root_url }}{{ post.url }}#continued">{{ site.excerpt_link }}</a>
  </footer>
{% endif %}

{% endif %}

{% unless index %} {% if post.external-url %} <p>NB: The subject of this post is on <a href=“{{ page.external-url }}”>this web page</a>.</p> {% endif %} {{ content | replace: '<!–more–>', '<a class=“anchor” id=“continued”></a>' }} {% endunless %}

{% if index %}

<footer>
  <p class="meta">
              Filed on <time>{{ post.date | date: "%b %-d, %Y" }}</time> under <span class="categories">{{ post.categories | titlecase }}</span>
  </p>
</footer>

{% endif %}