{% extends "base.html" %} {% load navigation_tags wagtailimages_tags wagtailcore_tags %} {% block content %} {% include "base/include/header-blog.html" %}
{% if page.authors %}
{% for author in page.authors %}
{% picture author.image format-{avif,webp,jpeg} fill-50x50-c100 class="blog__avatar" %} {{ author.first_name }} {{ author.last_name }}
{% endfor %}
{% endif %}
{% if page.backstory %} {{ page.backstory }}
{% endif %} {# Give a label to the recipe section for screen reader users. #}
Recipe{% if page.recipe_headline %}: {{ page.recipe_headline|richtext }}{% endif %}
{{ page.body }}
{% endblock content %}