ui2022/schoolnow/review__block--grid.html.twig line 1

Open in your IDE?
  1. {% set title = _args.title|default(null) %}
  2. {% set attr = _args.attr|default({}) %}
  3. {% if title and title is not iterable %}
  4.     {% set title = {
  5.         text: title,
  6.     } %}
  7. {% endif %}
  8. {% set attr = attr|merge({
  9.     class: ('review-block ' ~ (attr.class|default('')))|trim,
  10. }) %}
  11. <div {{ attributes(attr) }}>
  12.     {% if title %}
  13.         {% include '@ui2022/schoolnow/review__block__title.html.twig' with title %}
  14.     {% endif %}
  15.     <div class="blocklist blocklist--grid text-gray-dark">
  16.         {% block content %}{% endblock %}
  17.     </div>
  18. </div>