Within @Storefront/storefront/base.html.twig the blocks base_header and base_navigation are defined. I would like t move base_navigation into base_header to achieve a markup like this:
<header>
<div class="header-main">
<!-- base_header_inner -->
</div>
<div class="nav-main">
<!-- base_navigation_inner -->
</div>
</header>
I have already tried the following:
{% sw_extends '@Storefront/storefront/base.html.twig' %}
{% block base_header %}
<header>
<div class="header-main">
{% block base_header_inner %}
{{ parent() }}
{% endblock %}
</div>
{% block base_navigation %}
{{ parent() }}
{% endblock %}
</header>
{% endblock %}
But instead of moving it it simply creates a new navigation within the header but keeps the original one.