2022-03-04 10:24:21 +01:00
< aside class = "sidebar left-sidebar sticky {{ if .Site.Params.sidebar.compact }}compact{{ end }}" >
2020-09-09 17:17:09 +02:00
< button class = "hamburger hamburger--spin" type = "button" id = "toggle-menu" aria-label = "{{ T `toggleMenu` }}" >
2020-08-22 13:20:08 +02:00
< span class = "hamburger-box" >
< span class = "hamburger-inner" ></ span >
</ span >
</ button >
2022-03-03 23:11:19 +01:00
< header >
2020-09-06 12:56:44 +02:00
{{ with .Site.Params.sidebar.avatar }}
2021-07-23 16:56:52 +08:00
{{ if (default true .enabled) }}
2020-08-24 21:20:59 +02:00
< figure class = "site-avatar" >
2022-01-20 11:38:16 +01:00
< a href = "{{ .Site.BaseURL | relLangURL }}" >
2020-12-11 16:33:02 +01:00
{{ if not .local }}
< img src = "{{ .src }}" width = "300" height = "300" class = "site-logo" loading = "lazy" alt = "Avatar" >
2020-09-06 12:56:44 +02:00
{{ else }}
2020-12-11 16:33:02 +01:00
{{ $avatar := resources.Get (.src) }}
{{ if $avatar }}
{{ $avatarResized := $avatar.Resize "300x" }}
< img src = "{{ $avatarResized.RelPermalink }}" width = "{{ $avatarResized.Width }}"
height = "{{ $avatarResized.Height }}" class = "site-logo" loading = "lazy" alt = "Avatar" >
{{ else }}
{{ errorf "Failed loading avatar from %q" . }}
{{ end }}
2020-09-06 12:56:44 +02:00
{{ end }}
2022-01-20 11:38:16 +01:00
</ a >
2020-11-23 10:01:39 +01:00
{{ with $.Site.Params.sidebar.emoji }}
2020-11-23 10:47:22 +01:00
< span class = "emoji" > {{ . }}</ span >
2020-11-23 10:01:39 +01:00
{{ end }}
2020-08-24 21:20:59 +02:00
</ figure >
2021-07-23 16:56:52 +08:00
{{ end }}
2020-08-24 21:20:59 +02:00
{{ end }}
2021-10-23 11:58:55 +02:00
2022-03-03 23:11:19 +01:00
< div class = "site-meta" >
< h1 class = "site-name" >< a href = "{{ .Site.BaseURL | relLangURL }}" > {{ .Site.Title }}</ a ></ h1 >
< h2 class = "site-description" > {{ .Site.Params.sidebar.subtitle }}</ h2 >
</ div >
2020-08-22 13:20:08 +02:00
</ header >
2022-03-04 10:24:21 +01:00
{{- with .Site.Menus.social -}}
< ol class = "social-menu" >
{{ range . }}
< li >
< a
href = '{{ .URL }}'
{{ if eq ( default true . Params . newTab ) true }} target = "_blank" {{ end }}
{{ with . Name }} title = "{{ . }}" {{ end }}
2022-10-29 13:04:21 +01:00
rel = "me"
2022-03-04 10:24:21 +01:00
>
{{ $icon := default "link" .Params.Icon }}
{{ with $icon }}
{{ partial "helper/icon" . }}
{{ end }}
</ a >
</ li >
{{ end }}
</ ol >
{{- end -}}
2020-09-14 13:38:24 +02:00
< ol class = "menu" id = "main-menu" >
2020-08-22 13:20:08 +02:00
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
{{ $active := or (eq $currentPage.Title .Name) (or ($currentPage.HasMenuCurrent "main" .) ($currentPage.IsMenuCurrent "main" .)) }}
< li {{ if $ active }} class = 'current' {{ end }} >
2021-10-16 10:56:55 +02:00
< a href = '{{ .URL | relLangURL }}' {{ if eq . Params . newTab true }} target = "_blank" {{ end }} >
2021-10-23 09:18:44 +02:00
{{ $icon := default .Pre .Params.Icon }}
2020-08-24 21:20:59 +02:00
{{ if .Pre }}
2021-10-23 09:18:44 +02:00
{{ warnf "Menu item [%s] is using [pre] field to set icon, please use [params.icon] instead.\nMore information: https://docs.stack.jimmycai.com/configuration/custom-menu.html" .URL }}
{{ end }}
{{ with $icon }}
{{ partial "helper/icon" . }}
2020-08-24 21:20:59 +02:00
{{ end }}
2020-08-22 13:20:08 +02:00
< span > {{- .Name -}}</ span >
</ a >
</ li >
{{ end }}
2020-12-23 19:03:40 +01:00
2022-02-27 10:51:02 +01:00
< div class = "menu-bottom-section" >
{{- $currentLanguageCode := .Language.Lang -}}
{{ with .Site.Home.AllTranslations }}
< li id = "i18n-switch" >
{{ partial "helper/icon" "language" }}
< select name = "language" onchange = "window.location.href = this.selectedOptions[0].value" >
{{ range . }}
< option value = "{{ .Permalink }}" {{ if eq . Language . Lang $ currentLanguageCode }} selected {{ end }} > {{ .Language.LanguageName }}</ option >
{{ end }}
</ select >
</ li >
{{ end }}
{{ if (default false .Site.Params.colorScheme.toggle) }}
< li id = "dark-mode-toggle" >
{{ partial "helper/icon" "toggle-left" }}
{{ partial "helper/icon" "toggle-right" }}
< span > {{ T "darkMode" }}</ span >
</ li >
{{ end }}
</ div >
2020-09-14 13:38:24 +02:00
</ ol >
2020-11-23 10:47:22 +01:00
</ aside >