fmartingr.com/templates/macros/blog.html
2016-12-19 09:53:28 +01:00

11 lines
333 B
HTML

{% macro render_blog_post(post, from_index=false) %}
<article class="center">
<h1><a href="{{ post|url }}">{{ post.title }}</a></h1>
<div class="info">
Published on {{ post.pub_date }} with <a href="#">no comments.</a>
</div>
<div class="content">
{{ post.body }}
</div>
</article>
{% endmacro %}