{% extends "base.html" %} {% load i18n static wagtailcore_tags wagtailimages_tags %} {% load wagtailroutablepage_tags %} {% block extra_css %} {% endblock %} {% block body_class %}template-blogarticlepage{% endblock %} {% block content %}
{% if page.header_image %}
{% image page.header_image fill-1024x300 %}
{% endif %}

{{ page.title }}

{{ page.date }}
{% blocktrans %}By{% endblocktrans %}
    {% for article_author in page.authors.all %} {% with author=article_author.author %}
  • {{ author.name }}
  • {% endwith %} {% endfor %}
{% blocktrans %}Tags{% endblocktrans %}:
    {% for tag in page.tags.all %}
  • {{ tag }}
  • {% endfor %} {% if not page.tags.all %}
  • {% blocktrans %}No tags{% endblocktrans %}
  • {% endif %}
{% include_block page.content %}

{% blocktrans %}About the author(s){% endblocktrans %}

    {% for article_author in page.authors.all %} {% with author=article_author.author %}
  • {% if author.picture %}
    {% image author.picture fill-255x255 %}
    {% endif %}

    {{ author.name }}

    {% if author.intro %}
    {{ author.intro }}
    {% endif %}
  • {% endwith %} {% endfor %}
{% endblock %}