layout: postwrapper


<article class=“post” itemscope itemtype=“schema.org/BlogPosting”>

<div class="post-header">
        <h1 class="post-title" itemprop="name headline">{{ page.title | escape }}</h1>
        <p class="post-meta">
                <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"> 
                        {% assign date_format = site.ons.date_format | default: "%b %-d, %Y" %} {{ page.date | date: date_format }} 
                </time>
                &nbsp; | &nbsp;<span class="eta"></span> (<span class="words"></span> words)&nbsp; | &nbsp;
                {% if page.author %}
                        <span itemprop="author" itemscope itemtype="http://schema.org/Person">
                                <span itemprop="name">
                                        <a href="/author/">{{ page.author }}</a>
                                </span>
                        </span> 
                {% endif %}
                <br><br>
                {% include share.html %} 
                <br><br>
        </p>
</div>

<div class="post-content" itemprop="articleBody">
        {{ content }}
        <br>
        {% include share.html %} 
</div>

<nav class="post-nav">
{% if page.next %} 
        <a class="post-nav-item post-nav-next" href="{{ page.next.url }}">
                <section class="post-nav-teaser">
                        <span class="post-nav-icon">&lang;</span> 
                        <span class="post-nav-info">
                                <h4 class="post-nav-title">{{ page.next.title }}</h4>
                                <p class="post-nav-excerpt">{{ page.next.excerpt | truncate: 40 }}&hellip;</p>
                        </span>
                </section>
        </a>
{% endif %}
{% if page.previous %} 
        <a class="post-nav-item post-nav-prev" href="{{ page.previous.url }}">
                <section class="post-nav-teaser">
                        <span class="post-nav-icon">&rang;</span>
                        <span class="post-nav-info">
                                <h4 class="post-nav-title">{{ page.previous.title }}</h4>
                                <p class="post-nav-excerpt">{{ page.previous.excerpt | truncate: 40 }}&hellip;</p>
                        </span>
                </section>
        </a> 
{% endif %} 
<div class="clear"></div>
</nav>

{% if site.disqus.shortname %} 
        {% include disqus_comments.html %} 
{% endif %}

</article> {% include footer.html %} {% include post-js-include.html %}