mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2025-08-24 11:49:20 +00:00
36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
<!--
|
|
SPDX-FileCopyrightText: 2016 Martin Donath <martin.donath@squidfunk.com>
|
|
SPDX-FileCopyrightText: 2024 Jonah Aragon <jonah@privacyguides.org>
|
|
|
|
SPDX-License-Identifier: MIT OR LicenseRef-MIT-mkdocs-material
|
|
-->
|
|
|
|
<!-- Site language selector -->
|
|
<div class="md-header__option">
|
|
<div class="md-select">
|
|
{% for alt in config.extra.alternate %}
|
|
{% if alt.lang == config.theme.language %}
|
|
<button class="md-header__button md-icon" aria-label="{{ lang.t('select.language') }}">
|
|
<img alt="{{ config.theme.language }}" class="twemoji" src="{{ alt.icon }}" width="20" height="20">
|
|
</button>
|
|
{% endif %}
|
|
{% endfor %}
|
|
<div class="md-select__inner">
|
|
<ul class="md-select__list">
|
|
{% for alt in config.extra.alternate %}
|
|
<li class="md-select__item">
|
|
<a
|
|
href="{{ "/" ~ alt.lang ~ "/" ~ page.url }}"
|
|
hreflang="{{ alt.lang }}"
|
|
class="md-select__link"
|
|
>
|
|
<img alt="{{ alt.lang }}" class="twemoji" src="{{ alt.icon }}" width="20" height="20">
|
|
{{ alt.name }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|