mirror of https://github.com/jpanther/congo.git
71 lines
2.7 KiB
HTML
71 lines
2.7 KiB
HTML
<footer class="py-10">
|
|
{{/* Footer menu */}}
|
|
{{ if .Site.Menus.footer }}
|
|
<nav class="pb-4 text-base font-medium text-neutral-500 dark:text-neutral-400">
|
|
<ul class="flex flex-col list-none sm:flex-row">
|
|
{{ range .Site.Menus.footer }}
|
|
<li class="mb-1 sm:mb-0 sm:mr-7 sm:last:mr-0">
|
|
<a
|
|
class="hover:underline hover:decoration-primary-500 hover:decoration-2 hover:underline-offset-2"
|
|
href="{{ .URL }}"
|
|
title="{{ .Title }}"
|
|
>{{ .Name | markdownify | emojify }}</a
|
|
>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
{{ end }}
|
|
<div class="flex justify-between">
|
|
<div>
|
|
{{/* Copyright */}}
|
|
<p class="text-sm text-neutral-500 dark:text-neutral-400">
|
|
{{- with .Site.Copyright }}
|
|
{{ . | emojify | markdownify }}
|
|
{{- else }}
|
|
©
|
|
{{ now.Format "2006" }}
|
|
{{ .Site.Author.name | markdownify | emojify }}
|
|
{{- end }}
|
|
</p>
|
|
{{/* Theme attribution */}}
|
|
{{ if .Site.Params.attribution | default true }}
|
|
<p class="text-xs text-neutral-500 dark:text-neutral-400">
|
|
{{ $hugo := printf `<a class="hover:underline hover:decoration-primary-400 hover:text-primary-500"
|
|
href="https://gohugo.io/" target="_blank" rel="noopener noreferrer">Hugo</a>`
|
|
}}
|
|
{{ $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>` }}
|
|
{{ i18n "footer.powered_by" (dict "Hugo" $hugo "Congo" $congo) | safeHTML }}
|
|
</p>
|
|
{{ end }}
|
|
</div>
|
|
{{/* Dark mode toggle */}}
|
|
{{ if and (.Site.Params.showDarkToggle | default false) (eq (.Site.Params.darkMode | default "auto") "auto") }}
|
|
<div
|
|
class="text-sm cursor-pointer text-neutral-700 dark:text-neutral hover:text-primary-600 dark:hover:text-primary-400 {{ if .Site.Params.showScrollToTop | default true -}}
|
|
ltr:mr-14 rtl:ml-14
|
|
{{- end }}"
|
|
>
|
|
<button
|
|
id="dark-toggle"
|
|
class="inline w-12 h-12 dark:hidden"
|
|
title="{{ i18n "footer.dark_appearance" }}"
|
|
>
|
|
{{ partial "icon.html" "moon" }}
|
|
</button>
|
|
<button
|
|
id="light-toggle"
|
|
class="hidden w-12 h-12 cursor-pointer dark:inline"
|
|
title="{{ i18n "footer.light_appearance" }}"
|
|
>
|
|
{{ partial "icon.html" "sun" }}
|
|
</button>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
{{/* Extend footer - eg. for extra scripts, etc. */}}
|
|
{{ if templates.Exists "partials/extend-footer.html" }}
|
|
{{ partialCached "extend-footer.html" . }}
|
|
{{ end }}
|
|
</footer>
|