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

{{ page.title }}

{% endblock content_header %} {% block content_body %}
{{ page.content }}
{% if page.featured_image is defined %} {% 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 is defined %}

{{ page.footer_line }}

{% elif page.footer_include is defined %} {% include page.footer_include %} {% endif %} {% endblock content_footer %}