templates/molecules/page-header.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 pretitle is defined %}
  14.         <template v-slot:pretitle>
  15.             <p class="at-title is-pretitle">{{ pretitle }}</p>
  16.         </template>
  17.     {% endif %}
  18.     {% if title is defined %}
  19.         <h1 class="at-title">{{ title }}</h1>
  20.     {% endif %}
  21.     {% if tags is defined %}
  22.         <template v-slot:tags>
  23.             <ul class="ml-tags-list">
  24.                 {% for item in tags %}
  25.                     <li>
  26.                         <span class="at-tag is-primary">{{ item }}</span>
  27.                     </li>
  28.                 {% endfor %}
  29.             </ul>
  30.         </template>
  31.     {% endif %}
  32. </usc-page-header>