.themes/classic/source/_includes/article.html
21813059
 {% unless page.no_header %}
   <header>
     {% if index %}
d98a4de0
       <h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1>
21813059
     {% else %}
d98a4de0
       <h1 class="entry-title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
21813059
     {% endif %}
64b23d9f
     {% unless page.meta == false %}
b2828eb0
       <p class="meta">
         {% include post/date.html %}{{ time }}
         {% if site.disqus_short_name and page.comments != false and site.disqus_show_comment_count == true %}
          | <a href="{% if index %}{{ root_url }}{{ post.url }}{% endif %}#disqus_thread">Comments</a>
         {% endif %}
       </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 %}