templates/molecules/page-header-with-menu.html.twig line 1

Open in your IDE?
  1. <usc-page-header
  2.     :has-title="{{ title is defined ? 'true' : 'false' }}"
  3. >
  4.     {% if breadcrumb is defined %}
  5.         <template v-slot:breadcrumb>
  6.             <ol class="at-breadcrumb">
  7.                 {% for item in breadcrumb %}
  8.                     <li class="breadcrumb-item"><a href="{{ item.path }}">{{ item.title }}</a></li>
  9.                 {% endfor %}
  10.             </ol>
  11.         </template>
  12.     {% endif %}
  13.     {% if title is defined %}
  14.         <h1 class="at-title">{{ title }}</h1>
  15.     {% endif %}
  16.     {% if tags is defined %}
  17.         <template v-slot:tags>
  18.             <ul class="ml-tags-list">
  19.                 {% for item in tags %}
  20.                     <li>
  21.                         <span class="at-tag is-primary">{{ item }}</span>
  22.                     </li>
  23.                 {% endfor %}
  24.             </ul>
  25.         </template>
  26.     {% endif %}
  27.     {% if submenu is defined %}
  28.         <template v-slot:submenu>
  29.             {% for item in submenu %}
  30.                 <li class="submenu-item"><a href="{{ item.path }}">{{ item.name }}</a></li>
  31.             {% endfor %}
  32.         </template>
  33.     {% endif %}
  34. </usc-page-header>