bundles/FoxHabbit/BasisBundle/Resources/views/Areas/basisbundle-topnav/level-entries/link-open-flyout.html.twig line 1

Open in your IDE?
  1. {% import '@FoxHabbitBasis/Macro/wrap.html.twig' as wrap_macro %}
  2. {{ wrap_macro.wrapperOpen( entryConfig.wrapper, _context) }}
  3.     <a    class="{{ entryConfig.a_class|default('nav-link') }} {{ page.getClass() }}"
  4.         href="{{ page.getHref() }}"
  5.         {% if page.getTarget() %}
  6.         target="{{ page.getTarget() }}"
  7.         {% endif %}
  8.         title="{{ page.getTitle() }}"
  9.         data-toggle="nav-flyout"
  10.         data-flyout="{{ page.getId() }}"
  11.         role="button"
  12.     >
  13.         {{- page.getLabel() -}}
  14.         {#{% if entryConfig.mdi_icon|default(null) %}#}
  15.             {#<span class="menu-icon"></span>#}
  16.         {#{% endif %}#}
  17.     </a>
  18. {{ wrap_macro.wrapperClose( entryConfig.wrapper) }}