Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
uw_fdsu_theme_resp
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_fdsu_theme_resp
Merge requests
!103
ISTWCMS-6305: using function to get options for faculty colors
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ISTWCMS-6305: using function to get options for faculty colors
feature/ISTWCMS-6305-ebremner-links-block
into
1.1.x
Overview
0
Commits
3
Pipelines
0
Changes
2
Merged
Eric Bremner
requested to merge
feature/ISTWCMS-6305-ebremner-links-block
into
1.1.x
1 year ago
Overview
0
Commits
3
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
1.1.x
version 11
7d80b5a0
1 year ago
version 10
c849ba17
1 year ago
version 9
71a0e8b5
1 year ago
version 8
93ec6f0f
1 year ago
version 7
cf938ae6
1 year ago
version 6
180ffeee
1 year ago
version 5
7630e638
1 year ago
version 4
35d0593f
1 year ago
version 3
e9e4f978
1 year ago
version 2
0a81b8b5
1 year ago
version 1
eb22801e
1 year ago
1.1.x (base)
and
latest version
latest version
35721bcc
3 commits,
1 year ago
version 11
7d80b5a0
3 commits,
1 year ago
version 10
c849ba17
3 commits,
1 year ago
version 9
71a0e8b5
2 commits,
1 year ago
version 8
93ec6f0f
2 commits,
1 year ago
version 7
cf938ae6
2 commits,
1 year ago
version 6
180ffeee
2 commits,
1 year ago
version 5
7630e638
2 commits,
1 year ago
version 4
35d0593f
2 commits,
1 year ago
version 3
e9e4f978
2 commits,
1 year ago
version 2
0a81b8b5
2 commits,
1 year ago
version 1
eb22801e
1 commit,
1 year ago
2 files
+
61
−
14
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
templates/blocks/block--uw-cbl-links.html.twig
0 → 100644
+
60
−
0
Options
{#
/**
* @file
* Theme override to display a block.
*
* Available variables:
* - plugin_id: The ID of the block implementation.
* - label: The configured label of the block if visible.
* - configuration: A list of the block's configuration values.
* - label: The configured label for the block.
* - label_display: The display settings for the label.
* - provider: The module or other provider that provided this block plugin.
* - Block plugin specific settings will also be stored here.
* - content: The content of this block.
* - attributes: array of HTML attributes populated by modules, intended to
* be added to the main container tag of this template.
* - id: A valid HTML ID and guaranteed unique.
* - title_attributes: Same as attributes, except applied to the main title
* tag that appears in the template.
* - title_prefix: Additional output populated by modules, intended to be
* displayed in front of the main title tag that appears in the template.
* - title_suffix: Additional output populated by modules, intended to be
* displayed after the main title tag that appears in the template.
*
* @see template_preprocess_block()
*/
#}
{%
set
classes
=
[
'block'
,
'block-'
~
configuration.provider
|
clean_class
,
'block-'
~
plugin_id
|
clean_class
,
'block-'
~
plugin_id
|
clean_class
~
'__'
~
content
[
'#links'
][
'link_style'
],
]
%}
{%
if
in_layout_builder
%}
{{
attach_library
(
'uw_theme_admin/uw_layout_builder'
)
}}
{%
endif
%}
{%
if
content
%}
<div
{{
attributes.addClass
(
classes
)
}}
>
{%
if
admin_label
%}
<div
class=
"uw-admin-label"
>
{{
admin_label
}}
</div>
{%
endif
%}
{{
title_prefix
}}
{%
if
label
%}
{%
if
heading_level
%}
<
{{
heading_level
}}{{
title_attributes
}}
>
{{
label
}}
</
{{
heading_level
}}
>
{%
else
%}
<h2
{{
title_attributes
}}
>
{{
label
}}
</h2>
{%
endif
%}
{%
endif
%}
{{
title_suffix
}}
{%
block
content
%}
{{
content
}}
{%
endblock
%}
</div>
{%
endif
%}
Loading