mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-18 00:52:24 -06:00
23 lines
803 B
HTML
23 lines
803 B
HTML
<nav aria-label="Auxiliary" class="aux-nav">
|
|
<ul class="aux-nav-list">
|
|
{% for link in site.aux_links %}
|
|
<li class="aux-nav-list-item">
|
|
<a href="{{ link.last }}" class="site-button"
|
|
{% if site.aux_links_new_tab %}
|
|
target="_blank" rel="noopener noreferrer"
|
|
{% endif %}
|
|
>
|
|
{{ link.first }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% if site.color_scheme_options and site.color_scheme_options.switch_options %}
|
|
<li class="aux-nav-list-item">
|
|
<button class="site-button color-scheme-switch-theme-button" aria-label="Switch color scheme">
|
|
<svg aria-hidden="true" class="site-button-icon"><use href="#svg-{{ site.color_scheme | default: 'light' }}"></use></svg>
|
|
</button>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|