<!-- 
  Copyright IBM Corp. 2016, 2018

  This source code is licensed under the Apache-2.0 license found in the
  LICENSE file in the root directory of this source tree.
-->

{{#if sidenav.title}}
<header class="{{@root.prefix}}--side-nav__header">
  <div class="{{@root.prefix}}--side-nav__icon">
    <svg
      width="20"
      height="20"
      xmlns="http://www.w3.org/2000/svg"
      viewBox="0 0 32 32"
      aria-hidden="true">
      <path d="M8.24 25.14L7 26.67a14 14 0 0 0 4.18 2.44l.68-1.88a12 12 0 0 1-3.62-2.09zm-4.05-7.07l-2 .35A13.89 13.89 0 0 0 3.86 23l1.73-1a11.9 11.9 0 0 1-1.4-3.93zm7.63-13.31l-.68-1.88A14 14 0 0 0 7 5.33l1.24 1.53a12 12 0 0 1 3.58-2.1zM5.59 10L3.86 9a13.89 13.89 0 0 0-1.64 4.54l2 .35A11.9 11.9 0 0 1 5.59 10zM16 2v2a12 12 0 0 1 0 24v2a14 14 0 0 0 0-28z" />
    </svg>
  </div>
  <div class="{{@root.prefix}}--side-nav__details">
    <h2
      class="{{@root.prefix}}--side-nav__title"
      title="{{ sidenav.title.text }}">
      {{ sidenav.title.text }}
    </h2>
    <div class="{{@root.prefix}}--side-nav__switcher">
      <label for="side-nav-switcher" class="{{@root.prefix}}--assistive-text">
        Switcher
      </label>
      <select id="carbon-side-nav-switcher" class="{{@root.prefix}}--side-nav__select">
        <option
          class="{{@root.prefix}}--side-nav__option"
          disabled=""
          hidden=""
          value=""
          selected=""
        >
          Switcher
        </option>
        <option class="{{@root.prefix}}--side-nav__option" value="Option 1">
          Option 1
        </option>
        <option class="{{@root.prefix}}--side-nav__option" value="Option 2">
          Option 2
        </option>
        <option class="{{@root.prefix}}--side-nav__option" value="Option 3">
          Option 3
        </option>
      </select>
      <div class="{{@root.prefix}}--side-nav__switcher-chevron">
        <svg
          aria-hidden="true"
          width="20"
          height="20"
          xmlns="http://www.w3.org/2000/svg"
          viewBox="0 0 32 32"
        >
          <path d="M16 22L6 12l1.414-1.414L16 19.172l8.586-8.586L26 12 16 22z" />
        </svg>
      </div>
    </div>
  </div>
</header>
{{/if}}
