Changed name of Profile entity to Hat

so as not to conflict with Profile or Profile2 module on existing sites
This commit is contained in:
naomi
2018-04-11 12:18:27 +02:00
parent 1e1bfe0ca9
commit a48e37ad39
29 changed files with 1024 additions and 116 deletions

View File

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