diff --git a/core/modules/system/templates/links.html.twig b/core/modules/system/templates/links.html.twig index 62e9ed0..e8da1f5 100644 --- a/core/modules/system/templates/links.html.twig +++ b/core/modules/system/templates/links.html.twig @@ -33,24 +33,24 @@ * @ingroup themeable */ #} -{% if links -%} - {%- if heading -%} - {%- if heading.level -%} +{% if links %} + {% if heading %} + {% if heading.level %} <{{ heading.level }}{{ heading.attributes }}>{{ heading.text }} - {%- else -%} + {% else %} {{ heading.text }} - {%- endif -%} - {%- endif -%} + {% endif %} + {% endif %} - {%- for item in links -%} + {% for item in links %} - {%- if item.link -%} + {% if item.link %} {{ item.link }} - {%- elseif item.text_attributes -%} + {% elseif item.text_attributes %} {{ item.text }} - {%- else -%} + {% else %} {{ item.text }} - {%- endif -%} + {% endif %} {%- endfor -%} diff --git a/core/themes/classy/templates/navigation/links.html.twig b/core/themes/classy/templates/navigation/links.html.twig index c1bff6b..ac4ca76 100644 --- a/core/themes/classy/templates/navigation/links.html.twig +++ b/core/themes/classy/templates/navigation/links.html.twig @@ -31,25 +31,25 @@ * @see template_preprocess_links() */ #} -{% if links -%} - {%- if heading -%} - {%- if heading.level -%} +{% if links %} + {% if heading %} + {% if heading.level %} <{{ heading.level }}{{ heading.attributes }}>{{ heading.text }} - {%- else -%} + {% else %} {{ heading.text }} - {%- endif -%} - {%- endif -%} + {% endif %} + {% endif %} - {%- for item in links -%} + {% for item in links %} - {%- if item.link -%} + {% if item.link %} {{ item.link }} - {%- elseif item.text_attributes -%} + {% elseif item.text_attributes %} {{ item.text }} - {%- else -%} + {% else %} {{ item.text }} - {%- endif -%} + {% endif %} - {%- endfor -%} + {% endfor %} {%- endif %}