mixitup-views-view-mixitup.html.twig in MixItUp Views 8.2
Same filename and directory in other branches
Default view template to display content with MixItUp.
File
templates/mixitup-views-view-mixitup.html.twigView source
- {#
- /**
- * @file
- * Default view template to display content with MixItUp.
- */
- #}
- {% if filters is not null %}
- <div class="filters_wrapper">{{ filters }}</div>
- {% endif %}
-
- {% for row in rows %}
- {%
- set row_classes = [
- default_row_class ? 'views-row',
- ]
- %}
- <div{{ row.attributes.addClass(row_classes) }}>
- {{ row.content }}
- </div>
- {% endfor %}