.themes/classic/source/_includes/article.html
21813059
 {% unless page.no_header %}
   <header>
     {% if index %}
39d56bc9
       <h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{{ post.title | titlecase }}</a></h1>
21813059
     {% else %}
       <h1 class="entry-title">{{ page.title | titlecase }}</h1>
     {% endif %}
64b23d9f
     {% unless page.meta == false %}
4c21e690
       <p class="meta">{% include post/date.html %}{{ time }}</p>
87f300b2
     {% endunless %}
21813059
   </header>
 {% endunless %}
aa230616
 {% if index %}
da38dbe5
   <div class="entry-content">{{ content | excerpt }}</div>
596ec87c
   {% capture excerpted %}{{ content | has_excerpt }}{% endcapture %}
   {% if excerpted == 'true' %}
     <footer>
9e8eec33
       <a rel="full-article" href="{{ root_url }}{{ post.url }}">{{ site.excerpt_link }}</a>
596ec87c
     </footer>
   {% endif %}
aa230616
 {% else %}
39d56bc9
 <div class="entry-content">{{ content }}</div>
aa230616
 {% endif %}