mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
36 lines
993 B
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="categories">
|
|
{{ page.categories | category_links }}
|
|
</p>
|
|
<p class="byline author vcard source-org"><span class="by">by</span> <a class="fn" rel="author" href="/about/">{{ page.author }}</a></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 %} |