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
Raw Normal View History

2013-11-18 01:08:13 +01:00
---
layout: base
2013-11-18 01:08:13 +01:00
---
2013-11-24 17:31:03 +01:00
<section role="main" id="main" class="page-single row">
2013-11-23 21:53:52 +01:00
<article class="hentry format-post">
<header>
<h1 class="entry-title">{{ page.title }}</h1>
</header>
2013-11-23 21:53:52 +01:00
<section class="entry-content">
{% if page.image %}
{% picture {{ page.image }} class="teaser" %}
{% endif %}
2013-11-18 23:54:59 +01:00
2013-11-23 21:53:52 +01:00
{{ content }}
</section>
2013-11-23 21:53:52 +01:00
<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>
2013-11-29 00:17:23 +01:00
<p class="categories">
{{ page.categories | category_links }}
</p>
2013-11-23 21:53:52 +01:00
<div class="time">
2013-11-30 02:37:58 +01:00
<p>{{ page.date | timeago }}</p>
2013-11-23 21:53:52 +01:00
{% if page.moddate %}
2013-11-30 02:37:58 +01:00
<p class="modtime">updated: {{ page.moddate | timeago }}</p>
2013-11-23 21:53:52 +01:00
{% endif %}
</div>
</footer>
</article>
2013-11-24 17:31:03 +01:00
</section>
{% include related_posts.html %}