Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
prototype
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
prototype
Merge requests
!82
Update 4 files
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Update 4 files
issue/prototype-3400717:5.1.2.x
into
5.x
Overview
0
Commits
1
Pipelines
0
Changes
4
Closed
Jennifer Dust
requested to merge
issue/prototype-3400717:5.1.2.x
into
5.x
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
4
Expand
/templates/block/block--system-menu-block--footer.html.twig
/templates/block/block--system-menu-block.html.twig
/templates/block/block--system-menu-block--utility-menu.html.twig
/templates/block/block--system-menu-block--main.html.twig
0
0
Merge request reports
Compare
5.x
5.x (base)
and
latest version
latest version
36f6fb55
1 commit,
1 year ago
4 files
+
58
−
64
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
templates/block/block--system-menu-block--footer.html.twig deleted
100644 → 0
+
0
−
43
Options
{#
/**
* @file
* Theme override for a menu 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.
* - in_preview: Whether the plugin is being rendered in preview mode.
* - content: The content of this block.
* - attributes: HTML attributes for the containing element.
* - id: A valid HTML ID and guaranteed unique.
* - title_attributes: HTML attributes for the title element.
* - content_attributes: HTML attributes for the content element.
* - 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.
*
* Headings should be used on navigation menus that consistently appear on
* multiple pages. When this menu block's label is configured to not be
* displayed, it is automatically made invisible using the 'visually-hidden' CSS
* class, which still keeps it visible for screen-readers and assistive
* technology. Headings allow screen-reader and keyboard only users to navigate
* to or skip the links.
* See http://juicystudio.com/article/screen-readers-display-none.php and
* http://www.w3.org/TR/WCAG-TECHS/H42.html for more information.
*/
#}
{%
set
heading_id
=
attributes.id
~
'-menu'
|
clean_id
%}
<nav
role=
"navigation"
aria-label=
{{
"Footer"
|
t
|
striptags
}}
{{
attributes
|
without
(
'role'
,
'aria-labelledby'
)
}}
>
{{
title_prefix
}}
{{
title_suffix
}}
{# Menu. #}
{%
block
content
%}
{{
content
}}
{%
endblock
%}
</nav
>
Loading