{% embed '/frontend-eforum/_partials/header.html.twig' %}
{%- block metaTitle -%}
{%- if
templateEntity is defined
and templateEntity.templateType is not empty
and templateEntity.templateType.metaTags is not empty
-%}
{{- templateEntity.templateType.metaTags.title -}}
{%- endif -%}
{%- endblock -%}
{%- block metaDescription -%}
{%- if
templateEntity is defined
and templateEntity.templateType is not empty
and templateEntity.templateType.metaTags is not empty
-%}
<meta name="description" content="{{- templateEntity.templateType.metaTags.description -}}">
{%- endif -%}
{%- endblock -%}
{%- block seoHeadScripts -%}
{%- if
templateEntity is defined
and templateEntity.templateType is not empty
and templateEntity.templateType.metaTags is not empty
-%}
{{- templateEntity.templateType.metaTags.headScripts -}}
{%- endif -%}
{%- endblock -%}
{%- block seoBodyScripts -%}
{%- if
templateEntity is defined
and templateEntity.templateType is not empty
and templateEntity.templateType.metaTags is not empty
-%}
{{- templateEntity.templateType.metaTags.bodyScripts -}}
{%- endif -%}
{%- endblock -%}
{% endembed %}
{% set injectBreadcrumbs = false %}
{% if modules is not empty %}
{% set firstTopModule = (modules|keys)[0]|split("_")[0] %}
{% if firstTopModule == 'faqTop' %}
{% set injectBreadcrumbs = firstTopModule %}
{% endif %}
{% endif %}
{% if injectBreadcrumbs == false %}
{% include "frontend-eforum/_partials/breadcrumbs.html.twig" %}
{% endif %}
{% include "frontend-eforum/content.html.twig" with {modules: modules, injectBreadcrumbs: injectBreadcrumbs} %}
{% include '/frontend-eforum/footer.html.twig' %}