newly generated content entity.

This commit is contained in:
Naomi
2018-09-17 17:29:04 +01:00
parent 1e0a6a41d3
commit 7e1889346b
16 changed files with 708 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{#
/**
* @file opencase_report.html.twig
* Default theme implementation to present OpenCase Report data.
*
* This template is used when viewing OpenCase Report 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_opencase_report()
*
* @ingroup themeable
*/
#}
<div{{ attributes.addClass('opencase_report') }}>
{% if content %}
{{- content -}}
{% endif %}
</div>