{% set title = _args.title|default(null) %}
{% set attr = _args.attr|default({}) %}
{% if title and title is not iterable %}
{% set title = {
text: title,
} %}
{% endif %}
{% set attr = attr|merge({
class: ('review-block ' ~ (attr.class|default('')))|trim,
}) %}
<div {{ attributes(attr) }}>
{% if title %}
{% include '@ui2022/schoolnow/review__block__title.html.twig' with title %}
{% endif %}
<div class="blocklist blocklist--grid text-gray-dark">
{% block content %}{% endblock %}
</div>
</div>