This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/modules/zencrm_entities/templates/hat.html.twig
naomi a48e37ad39 Changed name of Profile entity to Hat
so as not to conflict with Profile or Profile2 module on existing sites
2018-04-11 12:18:27 +02:00

23 lines
470 B
Twig

{#
/**
* @file hat.html.twig
* Default theme implementation to present Hat data.
*
* This template is used when viewing Hat 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_hat()
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('hat') }}>
{% if content %}
{{- content -}}
{% endif %}
</div>