Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uw_wcms_gesso
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
uw_wcms_gesso
Merge requests
!56
Feature/istwcms 4695 ebremner theme banners
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/istwcms 4695 ebremner theme banners
feature/ISTWCMS-4695-ebremner-theme-banners
into
3.0.x
Overview
0
Commits
13
Pipelines
0
Changes
10
Merged
Eric Bremner
requested to merge
feature/ISTWCMS-4695-ebremner-theme-banners
into
3.0.x
3 years ago
Overview
0
Commits
13
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
version 4
version 14
0ad283bc
3 years ago
version 13
fd23c4bb
3 years ago
version 12
8947003a
3 years ago
version 11
8bf7db9a
3 years ago
version 10
8bf7db9a
3 years ago
version 9
be6ac232
3 years ago
version 8
084187ea
3 years ago
version 7
582c95f3
3 years ago
version 6
068d539d
3 years ago
version 5
339232bc
3 years ago
version 4
20a6e09b
3 years ago
version 3
60cf907c
3 years ago
version 2
c7b59194
3 years ago
version 1
c04486d3
3 years ago
3.0.x (base)
and
version 5
latest version
8100246f
13 commits,
3 years ago
version 14
0ad283bc
12 commits,
3 years ago
version 13
fd23c4bb
11 commits,
3 years ago
version 12
8947003a
10 commits,
3 years ago
version 11
8bf7db9a
10 commits,
3 years ago
version 10
8bf7db9a
10 commits,
3 years ago
version 9
be6ac232
9 commits,
3 years ago
version 8
084187ea
8 commits,
3 years ago
version 7
582c95f3
7 commits,
3 years ago
version 6
068d539d
6 commits,
3 years ago
version 5
339232bc
5 commits,
3 years ago
version 4
20a6e09b
5 commits,
3 years ago
version 3
60cf907c
4 commits,
3 years ago
version 2
c7b59194
3 commits,
3 years ago
version 1
c04486d3
2 commits,
3 years ago
Show latest version
1 file
+
26
−
28
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
source/_patterns/04-components/view/views-view/views-view.twig
+
26
−
28
Options
{%
set
additional_attributes
=
{
'class'
:
[
'view'
],
}
%}
<
{{
element
?:
'div'
}}
{{
add_attributes
(
additional_attributes
)
}}
>
{%
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
class=
"view
-
header"
>
{{
header
}}
</div>
{%
endif
%}
{%
if
exposed
%}
<div
class=
"view
__
filters"
>
{{
-
exposed
-
}}
<div
class=
"view
-
filters"
>
{{
exposed
}}
</div>
{%
endif
%}
{%
if
attachment_before
%}
<div
class=
"attachment attachment-
-
before"
>
{{
-
attachment_before
-
}}
<div
class=
"attachment attachment-before"
>
{{
attachment_before
}}
</div>
{%
endif
%}
{%
if
rows
%}
<div
class=
"view
__
content"
>
{{
-
rows
-
}}
<div
class=
"view
-
content"
>
{{
rows
}}
</div>
{%
elseif
empty
%}
<div
class=
"view
__
empty"
>
{{
-
empty
-
}}
<div
class=
"view
-
empty"
>
{{
empty
}}
</div>
{%
endif
%}
{%
if
pager
%}
{{
pager
}}
{%
endif
%}
{%
if
attachment_after
%}
<div
class=
"attachment attachment-
-
after"
>
{{
-
attachment_after
-
}}
<div
class=
"attachment attachment-after"
>
{{
attachment_after
}}
</div>
{%
endif
%}
{%
if
more
%}
{{
more
}}
{%
endif
%}
{%
if
footer
%}
<div
class=
"view
__
footer"
>
{{
-
footer
-
}}
<div
class=
"view
-
footer"
>
{{
footer
}}
</div>
{%
endif
%}
{%
if
feed_icons
%}
<div
class=
"feed-icons"
>
{{
-
feed_icons
-
}}
{{
feed_icons
}}
</div>
{%
endif
%}
</
{{
element
?:
'div'
}}
>
</
div
>
\ No newline at end of file
Loading