You are here

mixitup-views-view-mixitup.html.twig in MixItUp Views 8

Same filename and directory in other branches
  1. 8.2 templates/mixitup-views-view-mixitup.html.twig

Default view template to display content with MixItUp.

File

templates/mixitup-views-view-mixitup.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default view template to display content with MixItUp.
  5. */
  6. #}
  7. {% if filters is not null %}
  8. <div class="filters_wrapper">{{ filters }}</div>
  9. {% endif %}
  10. {% for row in rows %}
  11. {%
  12. set row_classes = [
  13. default_row_class ? 'views-row',
  14. ]
  15. %}
  16. <div{{ row.attributes.addClass(row_classes) }}>
  17. {{ row.content }}
  18. </div>
  19. {% endfor %}