{% extends "base.html" %} {% load static wagtailcore_tags wagtailimages_tags footnotes %} {% block content %}

{{ page.title }}

{% for tag in page.tags.all %} {{ tag.name }}  {% endfor %}
{{ page.date }}
{% if page.author_page %}
{{ page.author_page.title }}
{% elif page.author %}
{{ page.author }}
{% endif %}
{% if page.image %} {% image page.image original as article_image %} {% endif %}

{{ page.perex }}

{% richtext_footnotes page.content|richtext %} {% include "home/includes/footnotes.html" %}
{% endblock %}