templates/navbar.html.twig line 1

Open in your IDE?
  1. <header class="trw-header">
  2.     <div class="page-header">
  3.         <nav class="navbar-primary navbar-logo">
  4.             <a href="{{path('helpdesk_knowledgebase_folder')}}" title="Go to homepage">
  5.                 <img src="{{ absolute_url(asset('build/images/logo_big.png')) }}" width="40" height="40" alt="logo">
  6.                 <span class="navbar-icon-label">The Retro Web</span>
  7.             </a>
  8.         </nav>
  9.         <nav class="navbar-primary navbar-links">
  10.             <a href="{{ path('helpdesk_customer_create_ticket') }}" class="nav-link">
  11.                 <img src="{{ absolute_url(asset('build/icons/articles.svg')) }}" width="24" height="24" alt="art">
  12.                 <span class="navbar-label">New ticket</span>
  13.             </a>
  14.             {% if currentUser is defined and currentUser %}
  15.                 <span style="position: relative" class="uv-profile-block">
  16.                     <div class="uv-profile-wrapper uv-dropdown-other">
  17.                         <div class="uv-profile-avatar">
  18.                             <img src="{{ currentUser.smallThumbnail ?  app.request.scheme ~'://' ~ app.request.httpHost ~ asset('') ~ currentUser.smallThumbnail : asset(default_customer_image_path) }}" width="32" height="32">
  19.                             <span class="navbar-link">{{ currentUser.firstName }}</span>
  20.                         </div>
  21.                         <div class="uv-drop-icon"></div>
  22.                     </div>
  23.                     <div class="uv-dropdown-list uv-bottom-right uv-text-left">
  24.                         <div class="uv-dropdown-container">
  25.                             <label>Account</label>
  26.                             <ul>
  27.                                 <li>
  28.                                     <a href="{{ path('helpdesk_customer_ticket_collection') }}">Tickets</a>
  29.                                 </li>
  30.                                 {% if websiteConfiguration.ticketCreateOption == 1 %}
  31.                                     <li>
  32.                                         <a href="{{ path('helpdesk_customer_create_ticket') }}">New Ticket Request</a>
  33.                                     </li>
  34.                                 {% endif %}
  35.                                 <li>
  36.                                     <a href="{{ path('helpdesk_customer_account') }}">Profile</a>
  37.                                 </li>
  38.                                 <li>
  39.                                     <a class="uv-text-danger" href="{{ path('helpdesk_customer_logout') }}">Sign Out</a>
  40.                                 </li>
  41.                             </ul>
  42.                         </div>
  43.                     </div>
  44.                 </span>
  45.             {% else %}
  46.                 <a href="{{path('helpdesk_customer_login')}}" class="nav-link">
  47.                     <img src="{{ absolute_url(asset('build/icons/login.svg')) }}" width="24" height="24" alt="login">
  48.                     <span class="navbar-label"></span>
  49.                 </a>
  50.             {% endif %}
  51.         </nav>
  52.     </div>
  53. </header>