{% extends 'partials/_master.twig' %}
{% block main %}
{{ record.title }}
{{ record.teaser }}
{% if record.image != "" %}
{% endif %}
{{ record.body }}
{# If there are repeaters, we should output them. #}
{% with { 'record': record, 'common': false, 'repeaters': true, 'blocks': true, 'exclude': ['teaser', 'body', 'image'] } %}
{{ block('sub_fields', 'partials/_sub_fields.twig') }}
{% endwith %}
{# Uncomment this if you wish to dump the entire record to the client, for debugging purposes.
{{ dump(record) }}
#}
{{ include('partials/_recordfooter.twig', { 'record': record, 'extended': true }) }}
{% endblock main %}