{% extends "base.html" %} {% block title %} {{ page.title }} - {{ SITENAME }} {% endblock %} {% block metadesc %} {% if page.summary %}{{ page.summary|e }}{% else %}{{ super() }}{% endif %} {% endblock %} {% block content_all %}
{% block content_header %}

{{ page.title }}

{% endblock content_header %} {% block content_body %}
{{ page.content }}
{% if page.featured_image %} {% from 'includes/macros.html' import fi %} {% set i = page.featured_image[0] %} {{ fi(i.pic, i.link, i.text, i.alt, i.credit, i.credit_link) }} {% endif %}
{% endblock content_body %} {% block content_footer %} {% if page.footer_line %} {% elif page.footer_include %} {% endif %} {% endblock content_footer %}
{% endblock content_all %}