2011-06-17 22:24:48 -04:00
|
|
|
{% unless page.no_header %}
|
|
|
|
<header>
|
|
|
|
{% if index %}
|
2011-07-21 23:50:32 -04:00
|
|
|
<h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{{ post.title | titlecase }}</a></h1>
|
2011-06-17 22:24:48 -04:00
|
|
|
{% else %}
|
|
|
|
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
|
|
|
|
{% endif %}
|
2011-07-18 16:59:59 -04:00
|
|
|
{% unless page.meta == false %}
|
2011-09-21 05:46:48 -04:00
|
|
|
<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>
|
2011-07-13 22:23:19 -04:00
|
|
|
{% endunless %}
|
2011-06-17 22:24:48 -04:00
|
|
|
</header>
|
|
|
|
{% endunless %}
|
2011-06-07 16:12:46 -04:00
|
|
|
{% if index %}
|
2011-07-23 01:16:40 -04:00
|
|
|
<div class="entry-content">{{ content | excerpt }}</div>
|
2011-08-20 16:02:37 -04:00
|
|
|
{% capture excerpted %}{{ content | has_excerpt }}{% endcapture %}
|
|
|
|
{% if excerpted == 'true' %}
|
|
|
|
<footer>
|
2011-08-20 17:31:22 -04:00
|
|
|
<a rel="full-article" href="{{ root_url }}{{ post.url }}">{{ site.excerpt_link }}</a>
|
2011-08-20 16:02:37 -04:00
|
|
|
</footer>
|
|
|
|
{% endif %}
|
2011-06-07 16:12:46 -04:00
|
|
|
{% else %}
|
2011-07-21 23:50:32 -04:00
|
|
|
<div class="entry-content">{{ content }}</div>
|
2011-06-07 16:12:46 -04:00
|
|
|
{% endif %}
|