2022-03-04 17:24:21 +08:00
< aside class = "sidebar left-sidebar sticky {{ if .Site.Params.sidebar.compact }}compact{{ end }}" >
2020-09-09 23:17:09 +08:00
< button class = "hamburger hamburger--spin" type = "button" id = "toggle-menu" aria-label = "{{ T `toggleMenu` }}" >
2020-08-22 19:20:08 +08:00
< span class = "hamburger-box" >
< span class = "hamburger-inner" > < / span >
< / span >
< / button >
2022-03-04 06:11:19 +08:00
< header >
2020-09-06 18:56:44 +08:00
{{ with .Site.Params.sidebar.avatar }}
2022-10-29 23:14:19 +08:00
{{ if (default true .enabled) }}
2020-08-25 03:20:59 +08:00
< figure class = "site-avatar" >
2022-01-20 18:38:16 +08:00
< a href = "{{ .Site.BaseURL | relLangURL }}" >
2020-12-11 23:33:02 +08:00
{{ if not .local }}
< img src = "{{ .src }}" width = "300" height = "300" class = "site-logo" loading = "lazy" alt = "Avatar" >
2020-09-06 18:56:44 +08:00
{{ else }}
2020-12-11 23:33:02 +08: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 18:56:44 +08:00
{{ end }}
2022-01-20 18:38:16 +08:00
< / a >
2020-11-23 17:01:39 +08:00
{{ with $.Site.Params.sidebar.emoji }}
2020-11-23 17:47:22 +08:00
< span class = "emoji" > {{ . }}< / span >
2020-11-23 17:01:39 +08:00
{{ end }}
2020-08-25 03:20:59 +08:00
< / figure >
2021-07-23 16:56:52 +08:00
{{ end }}
2020-08-25 03:20:59 +08:00
{{ end }}
2021-10-23 17:58:55 +08:00
2022-03-04 06:11:19 +08: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 19:20:08 +08:00
< / header >
2022-03-04 17:24:21 +08:00
{{- with .Site.Menus.social -}}
2024-03-27 23:24:03 +08:00
< ol class = "menu-social" >
2022-03-04 17:24:21 +08:00
{{ range . }}
< li >
< a
href='{{ .URL }}'
{{ if eq (default true .Params.newTab) true }}target="_blank"{{ end }}
{{ with .Name }}title="{{ . }}"{{ end }}
2022-10-29 20:04:21 +08:00
rel="me"
2022-03-04 17:24:21 +08:00
>
{{ $icon := default "link" .Params.Icon }}
{{ with $icon }}
{{ partial "helper/icon" . }}
{{ end }}
< / a >
< / li >
{{ end }}
< / ol >
{{- end -}}
2020-09-14 19:38:24 +08:00
< ol class = "menu" id = "main-menu" >
2020-08-22 19:20:08 +08: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 } } >
2022-10-29 23:28:47 +08:00
< a href = '{{ .URL }}' { { if eq . Params . newTab true } } target = "_blank" { { end } } >
2021-10-23 15:18:44 +08:00
{{ $icon := default .Pre .Params.Icon }}
2020-08-25 03:20:59 +08:00
{{ if .Pre }}
2024-03-27 18:09:17 +08:00
{{ warnf "Menu item [%s] is using [pre] field to set icon, please use [params.icon] instead.\nMore information: https://stack.jimmycai.com/config/menu" .URL }}
2021-10-23 15:18:44 +08:00
{{ end }}
{{ with $icon }}
{{ partial "helper/icon" . }}
2020-08-25 03:20:59 +08:00
{{ end }}
2020-08-22 19:20:08 +08:00
< span > {{- .Name -}}< / span >
< / a >
< / li >
{{ end }}
2024-03-11 05:56:30 +08:00
< li class = "menu-bottom-section" >
< ol class = "menu" >
{{- $currentLanguageCode := .Language.Lang -}}
{{ if ( compare.Gt .Site.Home.AllTranslations.Len 1 ) }}
{{ with .Site.Home.AllTranslations }}
< li id = "i18n-switch" >
{{ partial "helper/icon" "language" }}
< select name = "language" title = "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 }}
2024-02-26 19:43:14 +08:00
{{ end }}
2024-03-11 05:56:30 +08:00
{{ 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 }}
< / ol >
< / li >
< / ol >
2020-11-23 17:47:22 +08:00
< / aside >