{% extends 'layout.html' %} {% from 'utils.html' import render_comment, meta %} {% block head %} {{ meta(post) }} {% endblock %} {% block title %} {{ post.title }} | {{ site.name }} {% endblock %} {% block content %}

{{ post.title }}

{{ post.content }}
{% if post.tags %}
{% endif %}
{{ render_comment(post) }}
{% if prev %} {% endif %} {% if next %} {% endif %} {% endblock %}