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.
naomi 4756074cf7 Generated module and Person entity
Changed "published" status of entity to "enabled". Removed author field from display
2018-04-04 12:59:01 +02:00

23 lines
485 B
Twig

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