{% extends "simpleblog/base.html" %} {% load i18n static simpleblog_tags wagtailimages_tags wagtailcore_tags wagtailroutablepage_tags %} {% block main_content %}
{% block post_title %}

{{ page.title|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 %} header_image
{% 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 %} {% if page.content %}
{{ page.content|richtext }}
{% endif %} {% endblock %} {% block post_blocks %} {% if page.streamblocks %} {% for block in page.streamblocks %} {% include_block block %} {% endfor %} {% endif %} {% endblock %} {% block post_content_bottom %}{% endblock %} {% block post_navigation %}
{% if prev %}
{% trans "Previous" %}

{{ prev.title }}

{% endif %}
{% if next %}
{% trans "Next" %}

{{ next.title }}

{% endif %}
{% endblock %}
{% block section_before_comments %}{% endblock %} {% block section_comments %} {% include 'components/comments.html' %} {% endblock %} {% endblock %}