Files
hugo-theme-chirpy/layouts/partials/footer.html
2025-05-12 11:48:49 +08:00

42 lines
1.0 KiB
HTML

<!-- The Footer -->
<footer
aria-label="Site Info"
class="
d-flex flex-column justify-content-center text-muted
flex-lg-row justify-content-lg-between align-items-lg-center pb-lg-3
"
>
<p>
©
<time>{{ now.Year }}</time>
{{ with .Site.Params.social }}
{{ if .url }}
<a href="{{ .url }}">{{ .name }}</a>.
{{ end }}
{{ end }}
<span
data-bs-toggle="tooltip"
data-bs-placement="top"
title="{{ T "copyright.verbose" }}"
>
{{- T "copyright.brief" -}}
</span>
</p>
<p>
{{- $platform := `<a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a>` -}}
{{- $theme := printf `<a
data-bs-toggle="tooltip"
data-bs-placement="top"
title="v%s"
href="https://github.com/geekifan/hugo-theme-chirpy"
target="_blank"
rel="noopener"
>Chirpy</a>` .Site.Params.theme_version -}}
{{ T "meta" | replaceRE ":PLATFORM" $platform | replaceRE ":THEME" $theme | safeHTML }}
</p>
</footer>