templates/hc/header-menu-session.html.twig line 1

Open in your IDE?
  1. {% set variant = _args.variant|default('default') %}
  2. {% set avatar = _args.avatar %}
  3. {% set displayName = _args.displayName %}
  4. {% set profileLink = _args.profileLink %}
  5. <div class="hc-header-menu-session hc-header-menu-session--{{ variant }}">
  6.     {% if avatar %}
  7.         {% include 'hc/avatar.html.twig' with {
  8.             image: avatar
  9.         } %}
  10.     {% else %}
  11.         {% include 'hc/icon.html.twig' with {
  12.             glyph: 'user',
  13.             variant: 'contrast',
  14.         } %}
  15.     {% endif %}
  16.     <span class="hc-header-menu--account--name">{{ displayName }}</span>
  17.     <a href=" {{ profileLink|e('html_attr') }}" title="Edit profile" class="hc-button hc-button--icon">
  18.         <i class="hc-icon hc-icon--settings"></i>
  19.     </a>
  20. </div>