{% extends 'partials/_master.twig' %} {% block main %}

{{ record.title }}

{# Output all fields, in the order as defined in the contenttype. To change the generated html and configure the options, see: https://docs.bolt.cm/templating #} {% with { 'record': record, 'common': true, 'extended': true, 'repeaters': true, 'blocks': true } %} {{ 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' with { 'record': record, 'extended': true } %} {% endblock main %}