{% set pagetitle = dictTitle | trans %}
{% extends "base.twig" %}
{% block content %}
{{ dictTitle | trans }}
{{ dictDescr | trans(parameters) }}
{# include optional information for error
Some exceptions set 'includeTemplate' to the name of a template to include.
e.g. "core:no_state.tpl.php". The format is ":"
#}
{% if includeTemplate -%}
{% set parts = includeTemplate|replace({'.tpl.php':'.twig'})|split(':') %}
{% set namespacedTemplate = "@" ~ parts[0] ~ "/" ~ parts[1] %}
{% include(namespacedTemplate) %}
{%- endif %}
{{ '{errors:report_trackid}' | trans }}
{# print out exception only if the exception is available #}
{% if showerrors -%}
{%- endif %}
{# Add error report submit section if we have a valid technical contact. 'errorreportaddress' will only be set if
the technical contact email address has been set. #}
{% if errorReportAddress is defined -%}