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