all repos — zola-bearblog @ be8552ef29fc7b3aa2a2d9de541afe3ce9c24ec0

Port of bear blog theme to zola

improve accessibility and HTML validity

Alan Pearce
commit

be8552ef29fc7b3aa2a2d9de541afe3ce9c24ec0

parent

99423f57f79499f13d021970c1efb4529072006b

1 file changed, 3 insertions(+), 3 deletions(-)

changed files
M templates/language_switcher.htmltemplates/language_switcher.html
@@ -1,11 +1,11 @@
{%- if config.extra.language_switcher %} - <nav class="lang"> + <nav class="lang" aria-label="{{ trans(key="language", lang=lang) }}"> {%- set language_agnostic_path = current_path | default(value="/") | replace(from='/' ~ lang ~ '/', to = '/') | trim_start_matches(pat = '/') %} {%- for tr in config.extra.translations %} {%- if tr.code == lang %} - <active>{{ tr.name }}</active> + <span class="active">{{ tr.name }}</span> {%- else %} - <a href="{{ get_url(path=language_agnostic_path, lang=tr.code) ~ "/" }}" hreflang="{{ tr.code }}">{{ tr.name }}</a> + <a href="{{ get_url(path=language_agnostic_path, lang=tr.code) ~ "/" }}" hreflang="{{ tr.code }}" lang="{{ tr.code }}">{{ tr.name }}</a> {%- endif %} {%- endfor %} </nav>