2013-04-19 14:00:59 -04:00
|
|
|
{% unless page.no_header %}
|
|
|
|
<header>
|
|
|
|
{% if index %}
|
|
|
|
<h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1>
|
|
|
|
{% else %}
|
|
|
|
<h1 class="entry-title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
|
|
|
|
{% endif %}
|
|
|
|
{% unless page.meta == false %}
|
|
|
|
<p class="meta">
|
|
|
|
{% include post/date.html %}{{ time }}
|
|
|
|
{% if site.disqus_short_name and page.comments != false and post.comments != false and site.disqus_show_comment_count == true %}
|
|
|
|
| <a href="{% if index %}{{ root_url }}{{ post.url }}{% endif %}#disqus_thread">Comments</a>
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
{% endunless %}
|
|
|
|
</header>
|
|
|
|
{% endunless %}
|
|
|
|
|
|
|
|
<script type="text/javascript"><!--
|
2013-04-22 20:07:34 -04:00
|
|
|
google_ad_client = "ca-pub-3055920918910714";
|
|
|
|
/* moparscape.org_banner */
|
|
|
|
google_ad_slot = "4021158971";
|
2013-04-19 14:00:59 -04:00
|
|
|
google_ad_width = 468;
|
|
|
|
google_ad_height = 60;
|
|
|
|
//-->
|
|
|
|
</script>
|
2013-04-22 20:07:34 -04:00
|
|
|
<script type="text/javascript"
|
|
|
|
src="//pagead2.googlesyndication.com/pagead/show_ads.js">
|
|
|
|
</script>
|
2013-04-19 14:00:59 -04:00
|
|
|
|
|
|
|
{% if index %}
|
|
|
|
<div class="entry-content">{{ content | excerpt }}</div>
|
|
|
|
{% capture excerpted %}{{ content | has_excerpt }}{% endcapture %}
|
|
|
|
{% if excerpted == 'true' %}
|
|
|
|
<footer>
|
|
|
|
<a rel="full-article" href="{{ root_url }}{{ post.url }}">{{ site.excerpt_link }}</a>
|
|
|
|
</footer>
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
<div class="entry-content">{{ content }}</div>
|
|
|
|
{% endif %}
|