templates/includes/header.html.twig line 1

Open in your IDE?
  1. {% if app.user %}
  2.     <div class="page-header page-header-default">
  3.         <div class="page-header-content">
  4.             <div class="page-title">
  5.                 <h4>
  6.                   <i class="icon-arrow-left52 position-left" onclick="history.back()"></i>
  7.                   <span class="text-semibold">{% if app.request.attributes.get('headerTitle') is null %}{{ (app.request.attributes.get('_route'))|trans }}{% else %}{{ app.request.attributes.get('headerTitle')|trans }}{% endif %} </span>
  8.                   {% if helpdesk is defined and helpdesk is not null %}<a><i class="fa fa-question-circle" data-toggle="modal" data-target="#help-modal"></i></a>{% endif %}
  9.                 </h4>
  10.                 <a class="heading-elements-toggle"><i class="icon-more"></i></a></div>
  11.         </div>
  12.     </div>
  13. {% endif %}