Provide structures and classes for standard media listing view
This commit is contained in:
parent
f42a089d46
commit
2df41eb12b
1 changed files with 28 additions and 23 deletions
|
@ -35,32 +35,37 @@
|
|||
dom_id ? 'js-view-dom-id-' ~ dom_id,
|
||||
]
|
||||
%}
|
||||
<div{{ attributes.addClass(classes) }}>
|
||||
{{ title_prefix }}
|
||||
{{ title }}
|
||||
{{ title_suffix }}
|
||||
<section{{ attributes.addClass(classes) }} data-headerbg="light">
|
||||
<div class="container">
|
||||
<div class="flow">
|
||||
{{ title_prefix }}
|
||||
{{ title }}
|
||||
{{ title_suffix }}
|
||||
|
||||
{% if header %}
|
||||
<header>
|
||||
{{ header }}
|
||||
</header>
|
||||
{% endif %}
|
||||
{% if header %}
|
||||
<header>
|
||||
{{ header }}
|
||||
</header>
|
||||
{% endif %}
|
||||
|
||||
{{ exposed }}
|
||||
{{ attachment_before }}
|
||||
{{ exposed }}
|
||||
{{ attachment_before }}
|
||||
|
||||
{{ rows }}
|
||||
{{ empty }}
|
||||
{{ pager }}
|
||||
<div class="media-list">
|
||||
{{ rows }}
|
||||
</div>
|
||||
{{ empty }}
|
||||
{{ pager }}
|
||||
|
||||
{{ attachment_after }}
|
||||
{{ more }}
|
||||
|
||||
{% if footer %}
|
||||
<footer>
|
||||
{{ footer }}
|
||||
</footer>
|
||||
{% endif %}
|
||||
{{ attachment_after }}
|
||||
{{ more }}
|
||||
|
||||
{% if footer %}
|
||||
<footer>
|
||||
{{ footer }}
|
||||
</footer>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{{ feed_icons }}
|
||||
</div>
|
||||
</section>
|
||||
|
|
Loading…
Reference in a new issue