23 lines
1.1 KiB
HTML
23 lines
1.1 KiB
HTML
<aside class="w-72 flex-shrink-0 flex flex-col gap-12 border-r border-on-surface/10 pr-8">
|
|
<header>
|
|
<a class="font-display-lg text-display-lg text-on-surface" href="{{ `/` | relLangURL }}">{{ site.Title }}</a>
|
|
</header>
|
|
|
|
<button class="relative w-full bg-transparent text-on-surface border border-outline/30 rounded py-1.5 pl-8 pr-3 text-left focus:outline-none focus:border-primary focus:ring-1 focus:ring-primary transition-colors text-label-sm" type="button" data-search-open aria-haspopup="dialog">
|
|
<span class="material-symbols-outlined absolute left-2 top-1.5 text-on-surface-variant text-[18px]" aria-hidden="true">search</span>
|
|
<span class="text-on-surface-variant/70">Search</span>
|
|
</button>
|
|
|
|
<nav class="flex flex-col gap-1 text-sm" aria-label="Primary">
|
|
{{ with site.Sections }}
|
|
{{ partial "explorer-tree.html" (dict "nodes" . "level" 0) }}
|
|
{{ end }}
|
|
</nav>
|
|
|
|
{{ with site.Params.sidebarFooter }}
|
|
<div class="mt-auto pt-8 font-display-lg italic text-on-surface-variant text-lg">
|
|
{{ . }}
|
|
</div>
|
|
{{ end }}
|
|
</aside>
|