themes/classic/source/_includes/article.html
21813059
 {% unless page.no_header %}
   <header>
     {% if index %}
353ccfd4
       <h1 class="entry-title"><a href="{{ post.url }}">{{ post.title | titlecase }}</a></h1>
21813059
     {% else %}
       <h1 class="entry-title">{{ page.title | titlecase }}</h1>
     {% endif %}
5d61b463
     {% unless page.no_meta or !index %}<p class="meta">{% include post_date.html %}</p>{% endunless %}
21813059
   </header>
 {% endunless %}
aa230616
 {% if index %}
5d61b463
   <div class="entry-content">{{ content | exerpt | smart_quotes }}</div>
353ccfd4
   <p><a rel="full-article" href="{{ post.url }}">Read on &rarr;</a></p>
5d61b463
   <footer>
     <p class="meta">
       {% include post_author.html %}
       {% include post_date.html %}
353ccfd4
       {% include post_categories.html %}
       <span class="comments"><a rel="comments" href="{{ post.url }}#disqus_thread">Comments</a></span>
5d61b463
       {% include sharing.html %}
     </p>
   </footer>
aa230616
 {% else %}
 <div class="entry-content">{{ content | smart_quotes }}</div>
 {% endif %}