{#
Defining page title based on current content name, if available
See full/blog_post.html.twig for an example of customization
#}
{% if content is defined and title is not defined %}
{% set title = ez_content_name( content ) %}
{% endif %}
{{ title|default( 'Home' ) }}
{# adding canonical url for all defined content #}
{% if content is defined and content.contentInfo.mainLocationId %}
{% endif %}