You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
762 B
22 lines
762 B
7 months ago
|
<header class="header">
|
||
|
<div class="container">
|
||
|
<div class="header-container">
|
||
|
{% if page.header %}
|
||
|
<div class="site-brand">
|
||
|
{{ page.header }}
|
||
|
</div> <!--/.site-branding -->
|
||
|
{% endif %}
|
||
|
{% if page.primary_menu or page.search_box %}
|
||
|
<div class="header-right">
|
||
|
{% if page.primary_menu %}
|
||
|
{% include '@vre2024/template-parts/header/header-primary-menu.html.twig' %}
|
||
|
{% endif %} <!-- end if for primary_menu -->
|
||
|
{% if page.search_box %}
|
||
|
{% include '@vre2024/template-parts/header/search.html.twig' %}
|
||
|
{% endif %}
|
||
|
</div> <!-- /.header-right -->
|
||
|
{% endif %}
|
||
|
</div><!-- /header-container -->
|
||
|
</div><!-- /container -->
|
||
|
</header><!-- /header -->
|