mercury_editor-2.0.x-dev/modules/mercury_editor_templates/templates/me-template.html.twig
modules/mercury_editor_templates/templates/me-template.html.twig
{#
/**
* @file
* Default theme implementation to present a Mercury Editor template entity.
*
* This template is used when viewing a canonical Mercury Editor template page,
*
* Available variables:
* - content: A list of content items. Use 'content' to print all content, or
* print a subset such as 'content.label'.
* - attributes: HTML attributes for the container element.
*
* @see template_preprocess_me_template()
*/
#}
<article{{ attributes }}>
{% if view_mode != 'full' %}
{{ title_prefix }}
{{ title_suffix }}
{% endif %}
{% if content %}
{{- content -}}
{% endif %}
</article>
