1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 10:08:50 +02:00
blog/_src/_layouts/post.html

36 lines
993 B
HTML

---
layout: base
---
<section role="main" id="main" class="page-single row">
<article class="hentry format-post">
<header>
<h1 class="entry-title">{{ page.title }}</h1>
</header>
<section class="entry-content">
{% if page.image %}
{% picture {{ page.image }} class="teaser" %}
{% endif %}
{{ content }}
</section>
<footer class="entry-meta">
<p class="byline author vcard source-org"><span class="by">by</span> <a class="fn" rel="author" href="/about/">{{ page.author }}</a></p>
<p class="categories">
{{ page.categories | category_links }}
</p>
<div class="time">
<p>{{ page.date | timeago }}</p>
{% if page.moddate %}
<p class="modtime">updated: {{ page.moddate | timeago }}</p>
{% endif %}
</div>
</footer>
</article>
</section>
{% include related_posts.html %}