ui2022/schoolnow/review__cell--title.html.twig line 1

Open in your IDE?
  1. {% set title = _args.title %}
  2. {% set subtitle = _args.subtitle|default(null) %}
  3. {% set details = _args.details|default([]) %}
  4. {% if not details is iterable %}
  5.     {% set details = [details] %}
  6. {% endif %}
  7. <div class="blocklist__cell blocklist_title">
  8.     <label class="blocklist__label">
  9.         {{ title }}
  10.         {% if subtitle %}
  11.             <sub>{{ subtitle }}</sub>
  12.         {% endif %}
  13.     </label>
  14.     {% if details %}
  15.         <ul class="blocklist__text clear__list">
  16.             {% for detail in details %}
  17.                 <li class="text-semibold">
  18.                     {{- detail -}}
  19.                 </li>
  20.             {% endfor %}
  21.         </ul>
  22.     {% endif %}
  23. </div>