congo/layouts/partials/footer.html

44 lines
1.7 KiB
HTML
Raw Normal View History

2021-10-19 04:45:11 +00:00
<footer class="py-10">
{{/* Footer menu */}}
{{ if .Site.Menus.footer }}
<nav class="pb-4 text-base font-medium text-neutral-400 dark:text-neutral-500">
<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:underline-primary-500 hover:underline-thickness-bold hover:underline-offset-small"
href="{{ .URL }}"
title="{{ .Title }}"
>{{ .Name | markdownify | emojify }}</a
2021-10-19 04:45:11 +00:00
>
</li>
{{ end }}
</ul>
</nav>
{{ end }}
2021-08-11 05:28:33 +00:00
{{/* Copyright */}}
2021-10-19 04:45:11 +00:00
<p class="text-sm text-neutral-400 dark:text-neutral-500">
2021-08-11 05:28:33 +00:00
{{- with .Site.Copyright }}
{{ . | emojify | markdownify }}
{{- else }}
&copy;
{{ now.Format "2006" }}
{{ .Site.Author.name | markdownify | emojify }}
2021-08-11 05:28:33 +00:00
{{- end }}
</p>
{{/* Theme attribution */}}
{{ if .Site.Params.attribution | default true }}
2021-08-20 07:02:08 +00:00
<p class="text-xs text-neutral-300 dark:text-neutral-600">
2021-09-20 03:24:28 +00:00
{{ $hugo := printf `<a class="hover:underline hover:underline-primary-300 hover:text-primary-400"
href="https://gohugo.io/" target="_blank" rel="noopener noreferrer">Hugo</a>`
2021-09-20 03:24:28 +00:00
}}
{{ $congo := printf `<a class="hover:underline hover:underline-primary-300 hover:text-primary-400" href="https://git.io/hugo-congo" target="_blank" rel="noopener noreferrer">Congo</a>` }}
{{ i18n "footer.powered_by" (dict "Hugo" $hugo "Congo" $congo) | safeHTML }}
2021-08-11 05:28:33 +00:00
</p>
{{ end }}
2021-08-14 00:47:33 +00:00
{{/* Extend footer - eg. for extra scripts, etc. */}}
{{ if templates.Exists "partials/extend-footer.html" }}
{{ partialCached "extend-footer.html" . }}
{{ end }}
2021-08-11 05:28:33 +00:00
</footer>