templates/core/_header.html.twig line 1
<header id="pageHeader" class="header">
<section class="header-top">
<div class="header-top__wrap">
<a href="{{ path('app_welsh') }}">
<img src="{{ asset('assets/img/welsh-flag.png') }}" alt="Welsh Language">
</a>
<ul class="top-nav">
<li>
<a href="{{ path('app_stats') }}" class="top-nav__stats{% if currentPath == path('app_stats') %} active{% endif %}">
<box-icon size="sm" name="stats"></box-icon> <span>Stats</span>
</a>
</li>
<li>
<a href="{{ path('app_green') }}" class="top-nav__green{% if currentPath == path('app_green') %} active{% endif %}">
<box-icon size="sm" type="solid" name="leaf"></box-icon> <span>Going Green</span>
</a>
</li>
<li>
<a href="{{ path('app_support') }}" class="top-nav__support{% if currentPath == path('app_support') %} active{% endif %}">
<box-icon size="sm" name="support"></box-icon> <span>Support</span>
</a>
</li>
<li>
<a href="" class="top-nav__chat top-nav__chat--active">
<box-icon size="sm" type="solid" name="conversation"></box-icon> <span>Live Chat</span>
</a>
</li>
<li>
<a href="{{ path('app_account_login') }}" class="top-nav__user">
<box-icon size="sm" name="user-circle"></box-icon> <span>Login/Register</span>
</a>
</li>
</ul>
</div>
</section>
<section class="header-main">
{% include "core/_nav.html.twig" %}
</section>
</header>