mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-62143 accessibility: Label breadcrumbs
This commit is contained in:
parent
38a1b4f203
commit
f13f5ab7f6
@ -3579,6 +3579,9 @@ EOD;
|
||||
if ($item->hidden) {
|
||||
$attributes['class'] = 'dimmed_text';
|
||||
}
|
||||
if ($item->is_last()) {
|
||||
$attributes['aria-current'] = 'page';
|
||||
}
|
||||
$content = html_writer::tag('span', $content, array('itemprop' => 'title'));
|
||||
$content = html_writer::link($item->action, $content, $attributes);
|
||||
|
||||
|
@ -63,12 +63,12 @@
|
||||
]
|
||||
}
|
||||
}}
|
||||
<nav role="navigation">
|
||||
<nav role="navigation" aria-label="{{#str}}breadcrumb, access{{/str}}">
|
||||
<ol class="breadcrumb">
|
||||
{{#get_items}}
|
||||
{{#has_action}}
|
||||
<li class="breadcrumb-item{{#is_hidden}} dimmed_text{{/is_hidden}}">
|
||||
<a href="{{{action}}}" {{#get_title}}title="{{get_title}}"{{/get_title}}>{{{get_content}}}</a>
|
||||
<a href="{{{action}}}" {{#is_last}}aria-current="page"{{/is_last}} {{#get_title}}title="{{get_title}}"{{/get_title}}>{{{get_content}}}</a>
|
||||
</li>
|
||||
{{/has_action}}
|
||||
{{^has_action}}
|
||||
|
Loading…
x
Reference in New Issue
Block a user