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/opencase_entities/templates/oc_actor.html.twig

26 lines
621 B
Twig

{#
/**
* @file oc_actor.html.twig
* Default theme implementation to present Actor data.
*
* This template is used when viewing Actor 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_oc_actor()
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('oc_actor') }}>
{% if normal_fields %}
<div id='static_data'>{{- normal_fields -}}</div>
{% endif %}
{% if extra_fields %}
<div id='dynamic_data'>{{- extra_fields -}}</div>
{% endif %}
</div>