{% extends "patterns/base_page.html" %} {% load wagtailcore_tags wagtailimages_tags static %} {% block content %} {% image page.image width-1280 as image %} {% include "patterns/molecules/title-block/title-block.html" with item=page meta=page.role %}
{{ image.alt }}
{% include_block page.body %}
{{ page.intro|richtext }}
{{ page.biography|richtext }}
{% if page.author_posts %}
{% include "patterns/atoms/section-title/section-title.html" with title="More of "|add:page.title.split.0|add:"'s thinking" %}
{% for post in page.author_posts %} {% if forloop.first %}
{% include "patterns/molecules/blog-item/blog-item.html" with item=post %}
{% else %} {% include "patterns/molecules/blog-item/blog-item.html" with item=post %} {% endif %} {% endfor %}
{% endif %} {% if page.related_works %}
{% endif %} {% include_block page.call_to_action %} {% endblock %}