2022-04-03 03:51:52 +00:00
|
|
|
<footer class="py-10 print:hidden">
|
2021-10-19 04:45:11 +00:00
|
|
|
{{/* Footer menu */}}
|
|
|
|
{{ if .Site.Menus.footer }}
|
2021-12-21 02:22:45 +00:00
|
|
|
<nav class="pb-4 text-base font-medium text-neutral-500 dark:text-neutral-400">
|
2021-10-19 04:45:11 +00:00
|
|
|
<ul class="flex flex-col list-none sm:flex-row">
|
|
|
|
{{ range .Site.Menus.footer }}
|
2022-05-01 00:19:32 +00:00
|
|
|
<li
|
|
|
|
class="mb-1 ltr:text-right rtl:text-left sm:mb-0 ltr:sm:mr-7 ltr:sm:last:mr-0 rtl:sm:ml-7 rtl:sm:last:ml-0"
|
|
|
|
>
|
2021-10-19 04:45:11 +00:00
|
|
|
<a
|
2022-02-20 03:36:36 +00:00
|
|
|
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2"
|
2021-10-19 04:45:11 +00:00
|
|
|
href="{{ .URL }}"
|
|
|
|
title="{{ .Title }}"
|
2021-10-26 23:34:50 +00:00
|
|
|
>{{ .Name | markdownify | emojify }}</a
|
2021-10-19 04:45:11 +00:00
|
|
|
>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
{{ end }}
|
2022-06-25 02:42:02 +00:00
|
|
|
<div class="flex items-center justify-between">
|
2021-10-29 00:15:00 +00:00
|
|
|
<div>
|
|
|
|
{{/* Copyright */}}
|
2022-06-27 00:30:07 +00:00
|
|
|
{{ if .Site.Params.footer.showCopyright | default true }}
|
2022-06-25 02:42:02 +00:00
|
|
|
<p class="text-sm text-neutral-500 dark:text-neutral-400">
|
|
|
|
{{- with .Site.Params.copyright }}
|
|
|
|
{{ . | emojify | markdownify }}
|
|
|
|
{{- else }}
|
|
|
|
©
|
|
|
|
{{ now.Format "2006" }}
|
|
|
|
{{ .Site.Author.name | markdownify | emojify }}
|
|
|
|
{{- end }}
|
|
|
|
</p>
|
|
|
|
{{ end }}
|
2021-10-29 00:15:00 +00:00
|
|
|
{{/* Theme attribution */}}
|
2022-06-27 00:30:07 +00:00
|
|
|
{{ if .Site.Params.footer.showThemeAttribution | default true }}
|
2022-01-12 01:20:04 +00:00
|
|
|
<p class="text-xs text-neutral-500 dark:text-neutral-400">
|
2021-12-24 23:53:46 +00:00
|
|
|
{{ $hugo := printf `<a class="hover:underline hover:decoration-primary-400 hover:text-primary-500"
|
2022-01-18 06:26:46 +00:00
|
|
|
href="https://gohugo.io/" target="_blank" rel="noopener noreferrer">Hugo</a>`
|
|
|
|
}}
|
2021-12-24 23:53:46 +00:00
|
|
|
{{ $congo := printf `<a class="hover:underline hover:decoration-primary-400 hover:text-primary-500" href="https://git.io/hugo-congo" target="_blank" rel="noopener noreferrer">Congo</a>` }}
|
2021-10-29 00:15:00 +00:00
|
|
|
{{ i18n "footer.powered_by" (dict "Hugo" $hugo "Congo" $congo) | safeHTML }}
|
|
|
|
</p>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2022-01-27 04:26:18 +00:00
|
|
|
{{/* Appearance switch */}}
|
2022-06-27 00:30:07 +00:00
|
|
|
{{ if .Site.Params.footer.showAppearanceSwitcher | default false }}
|
2022-01-18 23:25:48 +00:00
|
|
|
<div
|
2022-08-18 06:13:30 +00:00
|
|
|
class="{{ if .Site.Params.footer.showScrollToTop | default true -}}
|
2022-01-18 23:25:48 +00:00
|
|
|
ltr:mr-14 rtl:ml-14
|
2022-08-18 06:13:30 +00:00
|
|
|
{{- end }} cursor-pointer text-sm text-neutral-700 hover:text-primary-600 dark:text-neutral dark:hover:text-primary-400"
|
2022-01-18 23:25:48 +00:00
|
|
|
>
|
2023-01-11 23:19:49 +00:00
|
|
|
<button id="appearance-switcher" type="button" aria-label="appearance switcher">
|
2022-08-18 06:13:30 +00:00
|
|
|
<div
|
|
|
|
class="flex items-center justify-center w-12 h-12 dark:hidden"
|
|
|
|
title="{{ i18n "footer.dark_appearance" }}"
|
|
|
|
>
|
|
|
|
{{ partial "icon.html" "moon" }}
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="items-center justify-center hidden w-12 h-12 dark:flex"
|
|
|
|
title="{{ i18n "footer.light_appearance" }}"
|
|
|
|
>
|
|
|
|
{{ partial "icon.html" "sun" }}
|
|
|
|
</div>
|
2021-10-29 01:07:21 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2021-10-29 00:15:00 +00:00
|
|
|
</div>
|
2021-08-14 00:47:33 +00:00
|
|
|
{{/* Extend footer - eg. for extra scripts, etc. */}}
|
|
|
|
{{ if templates.Exists "partials/extend-footer.html" }}
|
2022-11-22 00:03:28 +00:00
|
|
|
{{ partial "extend-footer.html" . }}
|
2021-08-14 00:47:33 +00:00
|
|
|
{{ end }}
|
2021-08-11 05:28:33 +00:00
|
|
|
</footer>
|