12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- {%
- set classes = [
-
- 'view',
- 'view-' ~ id|clean_class,
- 'view-id-' ~ id,
- 'view-display-id-' ~ display_id,
- dom_id ? 'js-view-dom-id-' ~ dom_id,
- ]
- %}
- <div{{ attributes.addClass(classes) }}>
- {{ title_prefix }}
- {% if title %}
- {{ title }}
- {% endif %}
- {{ title_suffix }}
- {% if header %}
- <div class="view-header">
- {{ header }}
- </div>
- {% endif %}
- {% if exposed %}
- <div class="view-filters">
- {{ exposed }}
- </div>
- {% endif %}
- {% if attachment_before %}
- <div class="attachment attachment-before">
- {{ attachment_before }}
- </div>
- {% endif %}
- {% if rows %}
- <div class="view-content">
- {{ rows }}
- </div>
- {% elseif empty %}
- <div class="view-empty">
- {{ empty }}
- </div>
- {% endif %}
- {% if pager %}
- {{ pager }}
- {% endif %}
- {% if attachment_after %}
- <div class="attachment attachment-after">
- {{ attachment_after }}
- </div>
- {% endif %}
- {% if more %}
- {{ more }}
- {% endif %}
- {% if footer %}
- <div class="view-footer">
- {{ footer }}
- </div>
- {% endif %}
- {% if feed_icons %}
- <div class="feed-icons">
- {{ feed_icons }}
- </div>
- {% endif %}
- </div>
|