congo/layouts/partials/footer.html

46 lines
1.3 KiB
HTML
Raw Normal View History

2021-08-11 05:28:33 +00:00
<footer class="py-10 text-sm">
{{/* Copyright */}}
2021-08-20 07:02:08 +00:00
<p class="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 }}
{{- 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-08-17 06:48:08 +00:00
{{ i18n "footer.powered_by" }}
<a
class="hover:underline hover:underline-primary-300 hover:text-primary-400"
href="https://gohugo.io/"
target="_blank"
rel="noopener noreferrer"
>Hugo</a
>
2021-08-11 05:28:33 +00:00
&amp;
<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
>
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>
{{/* Include mermaid.js only on pages that use the shortcode */}}
{{- if .Page.HasShortcode "mermaid" -}}
2021-08-11 05:28:33 +00:00
<script src="https://unpkg.com/mermaid@8.11.4/dist/mermaid.min.js"></script>
<script>
mermaid.initialize({ theme: "default" });
</script>
{{- end -}}