templates/core/_header.html.twig line 1

  1. <header id="pageHeader" class="header">
  2.     <section class="header-top">
  3.         <div class="header-top__wrap">
  4.             <a href="{{ path('app_welsh') }}">
  5.                 <img src="{{ asset('assets/img/welsh-flag.png') }}" alt="Welsh Language">
  6.             </a>
  7.             <ul class="top-nav">
  8.                 <li>
  9.                     <a href="{{ path('app_stats') }}" class="top-nav__stats{% if currentPath == path('app_stats') %} active{% endif %}">
  10.                         <box-icon size="sm" name="stats"></box-icon> <span>Stats</span>
  11.                     </a>
  12.                 </li>
  13.                 <li>
  14.                     <a href="{{ path('app_green') }}" class="top-nav__green{% if currentPath == path('app_green') %} active{% endif %}">
  15.                         <box-icon size="sm" type="solid" name="leaf"></box-icon> <span>Going Green</span>
  16.                     </a>
  17.                 </li>
  18.                 <li>
  19.                     <a href="{{ path('app_support') }}" class="top-nav__support{% if currentPath == path('app_support') %} active{% endif %}">
  20.                         <box-icon size="sm" name="support"></box-icon> <span>Support</span>
  21.                     </a>
  22.                 </li>
  23.                 <li>
  24.                     <a href="" class="top-nav__chat top-nav__chat--active">
  25.                         <box-icon size="sm" type="solid" name="conversation"></box-icon> <span>Live Chat</span>
  26.                     </a>
  27.                 </li>
  28.                 <li>
  29.                     <a href="{{ path('app_account_login') }}" class="top-nav__user">
  30.                         <box-icon size="sm" name="user-circle"></box-icon> <span>Login/Register</span>
  31.                     </a>
  32.                 </li>
  33.             </ul>
  34.         </div>
  35.     </section>
  36.     <section class="header-main">
  37.         {% include "core/_nav.html.twig" %}
  38.     </section>
  39. </header>