y_camp-1.2.2/templates/ws-camp-header.html.twig
templates/ws-camp-header.html.twig
{#
/**
* @file
* Template for a WS Camp Header layout.
*
* This template provides a five columns display layout.
*
* Variables:
* - $content: An array of content, each item in the array is keyed to one
* content for the layout. This layout supports the following sections:
* - $content['header_top_left']: Content in first header's row first column.
* - $content['header_top_middle']: Content in first header's row second column.
* - $content['header_top_right']: Content in first header's row third column.
* - $content['header_bottom_left']: Content in second header's row first column.
* - $content['header_bottom_right']: Content in second header's row second column.
*/
#}
{% set classes = [
'header',
'ws-header',
'ws-camp-header',
'desktop',
] %}
{{ attach_library('y_camp/header') }}
{% if content %}
<header{{ attributes.addClass(classes) }}>
<div class="header--top">
<div class="row">
{% if content.header_top_left %}
<section class="col-12 col-md-6 header--top-left-column">
{{ content.header_top_left }}
</section>
{% endif %}
{% if content.header_top_right %}
<section class="col-12 col-md-6 header--top-right-column">
{{ content.header_top_right }}
</section>
{% endif %}
</div>
</div>
<div class="header--bottom">
<div class="row">
{% if content.header_bottom_left %}
<section class="col-lg-1 col-12 header--bottom-left-column">
{{ content.header_bottom_left }}
</section>
{% endif %}
{% if content.header_bottom_right %}
<section class="col-lg-11 col-12 header--bottom-right-column">
{{ content.header_bottom_right }}
</section>
{% endif %}
</div>
{# mobile menu toggler #}
<div class="menu-toggle">
<button class="header-navbar-toggler" aria-label="Menu toggle">
</button>
</div>
</div>
</header>
<a id="main-content" tabindex="-1" class="sr-only sr-only-focusable"></a>
{% endif %}
