mediocre-blog/_layouts/post.html

34 lines
956 B
HTML
Raw Normal View History

---
layout: default
---
<article itemscope itemtype="http://schema.org/BlogPosting">
<header id="post-header">
<h1 id="post-headline" itemprop="name headline">
{{ page.title | escape }}
</h1>
<div class="light">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">{{ site.author }}</span>
</span>
<!---->
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
{{ page.date | date: "%b %-d, %Y" }}
</time>
2018-09-06 15:57:08 +00:00
{%- if page.updated %}
<time datetime="{{ page.updated | date_to_xmlschema }}" itemprop="dateModified">
(Updated {{ page.updated | date: "%b %-d, %Y" }})
</time>
{% endif -%}
<span itemprop="about"><em>{{ page.description }}</em></span>
</div>
</header>
<div id="post-content" itemprop="articleBody">
{{ content }}
</div>
</article>