{% block post_title %}
{% endblock post_title %}
{% block post_meta %}
{{ page.opts.verbose_name|title }}
{{ page.first_published_at|date:"d M Y" }}
{% if page.category %}
{{ page.category|title }}
{% endif %}
{{ page.view_count }}
{% if page.tags.count %}
{% for tag in page.tags.all %}
{{ tag }}
{% endfor %}
{% endif %}
{% endblock post_meta %}
{% block post_thumbnail %}
{% if page.thumbnail %}
{% image page.thumbnail fill-695x388 as thumbnail %}
{% endif %}
{% endblock post_thumbnail %}
{% block post_summary %}
{% if page.summary %}
{{ page.summary|richtext }}
{% endif %}
{% endblock post_summary %}
{% block post_content_top %}{% endblock %}
{% block post_content %}
{% for block in page.contents %}
{% include_block block %}
{% endfor %}
{% endblock post_content %}
{% block post_content_bottom %}{% endblock %}
{% block post_navigation %}
{% if prev %}
{% trans "Previous" %}
{% endif %}
{% if next %}
{% trans "Next" %}
{% endif %}
{% endblock %}
{% block section_before_comments %}{% endblock %}
{% block section_comments %}
{% include 'components/comments.html' %}
{% endblock %}
{% endblock %}