mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
21 lines
430 B
Plaintext
21 lines
430 B
Plaintext
{{!
|
|
@template core/skip_links
|
|
|
|
Example context (json):
|
|
{
|
|
"links": [
|
|
{"url": "http://example.com/link1", "text": "Link 1"},
|
|
{"url": "http://example.com/link2", "text": "Link 2"}
|
|
]
|
|
}
|
|
}}
|
|
<div class="skiplinks">
|
|
{{#links}}
|
|
<a href="#{{{url}}}" class="skip">{{{text}}}</a>
|
|
{{/links}}
|
|
</div>
|
|
{{#js}}
|
|
require(['core/yui'], function(Y) {
|
|
M.util.init_skiplink(Y);
|
|
});
|
|
{{/js}} |