redhen_contact.html.twig in RedHen CRM 8
redhen_contact.html.twig Default theme implementation to present Contact data.
This template is used when viewing Contact pages.
Available variables:
- content: A list of content items. Use 'content' to print all content, or
- attributes: HTML attributes for the container element.
See also
File
modules/redhen_contact/templates/redhen_contact.html.twigView source
- {#
- /**
- * @file redhen_contact.html.twig
- * Default theme implementation to present Contact data.
- *
- * This template is used when viewing Contact pages.
- *
- *
- * Available variables:
- * - content: A list of content items. Use 'content' to print all content, or
- * - attributes: HTML attributes for the container element.
- *
- * @see template_preprocess_redhen_contact()
- *
- * @ingroup themeable
- */
- #}
- <div{{ attributes.addClass('redhen_contact') }}>
- {% if content %}
- {{- content -}}
- {% endif %}
- </div>