Generated module and Person entity
Changed "published" status of entity to "enabled". Removed author field from display
This commit is contained in:
22
modules/zencrm_entities/templates/person.html.twig
Normal file
22
modules/zencrm_entities/templates/person.html.twig
Normal file
@ -0,0 +1,22 @@
|
||||
{#
|
||||
/**
|
||||
* @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>
|
@ -0,0 +1 @@
|
||||
<!-- Add you custom twig html here -->
|
Reference in New Issue
Block a user