1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-25 02:28:51 +02:00
blog/_src/_layouts/post.html
Matthias Kretschmann 5def95446e
add actions section under each post
- comment vi tweet, thanks through bitcoin
- add vex modals with custom theme
- add bitcoin icon
- fix footer layout
2016-04-17 20:14:22 +02:00

31 lines
643 B
HTML

---
layout: base
---
<section role="main" id="main" class="page-single grid">
<article class="hentry format-post col6">
<header>
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
</header>
<section class="entry-content">
{% if page.image %}
<figure class="hentry__teaser">
{% picture {{ page.image }} %}
</figure>
{% endif %}
{{ content }}
</section>
{% include actions.html %}
{% include entry_meta.html %}
{% include relatedposts.html %}
</article>
</section>