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 }}
|
|
|
|
©
|
|
|
|
{{ 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-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>
|
|
|
|
&
|
|
|
|
<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) | 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>
|
|
|
|
|
|
|
|
{{/* Include mermaid.js only on pages that use the shortcode */}}
|
2021-08-20 22:54:42 +00:00
|
|
|
{{- 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 -}}
|