Version 1
[yaffs-website] / web / themes / contrib / bootstrap / templates / views / views-view.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation for main view template.
5  *
6  * Available variables:
7  * - attributes: Remaining HTML attributes for the element.
8  * - css_name: A css-safe version of the view name.
9  * - css_class: The user-specified classes names, if any.
10  * - header: The optional header.
11  * - footer: The optional footer.
12  * - rows: The results of the view query, if any.
13  * - empty: The content to display if there are no rows.
14  * - pager: The optional pager next/prev links to display.
15  * - exposed: Exposed widget form/info to display.
16  * - feed_icons: Optional feed icons to display.
17  * - more: An optional link to the next page of results.
18  * - title: Title of the view, only used when displaying in the admin preview.
19  * - title_prefix: Additional output populated by modules, intended to be
20  *   displayed in front of the view title.
21  * - title_suffix: Additional output populated by modules, intended to be
22  *   displayed after the view title.
23  * - attachment_before: An optional attachment view to be displayed before the
24  *   view content.
25  * - attachment_after: An optional attachment view to be displayed after the
26  *   view content.
27  * - dom_id: Unique id for every view being printed to give unique class for
28  *   JavaScript.
29  *
30  * @ingroup templates
31  *
32  * @see template_preprocess_views_view()
33  */
34 #}
35 {%
36   set classes = [
37     'view',
38     'view-' ~ id|clean_class,
39     'view-id-' ~ id,
40     'view-display-id-' ~ display_id,
41     dom_id ? 'js-view-dom-id-' ~ dom_id,
42   ]
43 %}
44 <div{{ attributes.addClass(classes) }}>
45   {{ title_prefix }}
46   {% if title %}
47     {{ title }}
48   {% endif %}
49   {{ title_suffix }}
50   {% if header %}
51     <div class="view-header">
52       {{ header }}
53     </div>
54   {% endif %}
55   {% if exposed %}
56     <div class="view-filters form-group">
57       {{ exposed }}
58     </div>
59   {% endif %}
60   {% if attachment_before %}
61     <div class="attachment attachment-before">
62       {{ attachment_before }}
63     </div>
64   {% endif %}
65
66   {% if rows %}
67     <div class="view-content">
68       {{ rows }}
69     </div>
70   {% elseif empty %}
71     <div class="view-empty">
72       {{ empty }}
73     </div>
74   {% endif %}
75
76   {% if pager %}
77     {{ pager }}
78   {% endif %}
79   {% if attachment_after %}
80     <div class="attachment attachment-after">
81       {{ attachment_after }}
82     </div>
83   {% endif %}
84   {% if more %}
85     {{ more }}
86   {% endif %}
87   {% if footer %}
88     <div class="view-footer">
89       {{ footer }}
90     </div>
91   {% endif %}
92   {% if feed_icons %}
93     <div class="feed-icons">
94       {{ feed_icons }}
95     </div>
96   {% endif %}
97 </div>