Issue #3187884 by kaynen: Remove extra if statement in block--system-branding-block.html.twig

merge-requests/160/head
kaynen 2020-12-13 00:51:29 +00:00 committed by larowlan
parent 81768d40f9
commit 3caf6df9d0
1 changed files with 3 additions and 5 deletions

View File

@ -23,11 +23,9 @@
{% endif %}
{% if site_name %}
<div class="site-branding__text">
{% if site_name %}
<div class="site-branding__name">
<a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home">{{ site_name }}</a>
</div>
{% endif %}
<div class="site-branding__name">
<a href="{{ path('<front>') }}" title="{{ 'Home'|t }}" rel="home">{{ site_name }}</a>
</div>
</div>
{% endif %}
</div>