{% assign post = include.post %}
{% if post.collection == 'posts' %}
{% assign verb = 'Posted' %}
{% else %}
{% assign verb = 'Created' %}
{% endif %}
{% if post.title %}
<h2 class="p-name" style="margin: 0.25rem 0;">
{{ post.title }}
</h2>
<p class="post-meta text-muted">
<time class="dt-published" itemprop="datePublished" datetime="{{ post.date }}">
{{ post.date | date: "%B %-d, %Y" }}{% if include.last == 'yes' %}. Last updated on <time>{{ post.last_modified_at | date: "%B %-d, %Y" }}.
</time>
{% endif %}
</p>
{% endif %}