{% extends "base.html" %} {% block content %} {% include "base/include/header-blog.html" %}
{% if page.authors() %}
{% for author in page.authors() %}
{{ image(author.image, "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 %}