23 lines
559 B
Twig
23 lines
559 B
Twig
{#
|
|
/**
|
|
* @file oc_actor_case_relation.html.twig
|
|
* Default theme implementation to present Actor-Case Relation data.
|
|
*
|
|
* This template is used when viewing Actor-Case Relation 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_case_relation()
|
|
*
|
|
* @ingroup themeable
|
|
*/
|
|
#}
|
|
<div{{ attributes.addClass('oc_actor_case_relation') }}>
|
|
{% if content %}
|
|
{{- content -}}
|
|
{% endif %}
|
|
</div>
|