{% extends "base.html" %} {% load static %} {% load wagtailcore_tags %} {% load wagtailcore_tags wagtailimages_tags %} {% block body_class %}template-blogpage{% endblock %} {% block extra_js %} {% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{# Post Content Column #}
{# Title #}

{{ page.title }}

{# Date/Time #} {% with categories=page.categories.all %}

Posted on {{ page.date }}{% if categories %} in {{ categories|join:", " }}{% endif %}

{% endwith %}
{# Preview Image #} {% if page.main_image %} {% image page.main_image fill-900x300-c100 class="img-fluid rounded" %}
{% endif %} {# Post Content #}

{{ page.intro }}

{% include_block page.body %}
{# Sidebar Widgets Column #}
{% include "search.html" %} {# Tags Widget #}
Tags
    {% if page.tags.all.count %} {% for tag in page.tags.all %} {{ tag }} {% endfor %} {% else %} No tags for this post {% endif %}


← Return to previous page

{% endblock %}