{% extends 'base.html' %} {% block title %}{{ post.title }} - {{ config.title }} {% endblock %} {% block content %}

{{ post.title }}

{{ post.date | date('Y-m-d') }}
{% if post.toc %}
{% endif %} {{ post.html|raw }}

{% if post.tags %}
{{ lang('tags') }}: {% for tag in post.tags %} {{ tag }} {% endfor %}

{% endif %}
{% include 'include/comments.html' %}
{% include 'include/footer.html' %}
{% if post.toc %} {% endif %} {% endblock %}