mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-04-29 20:13:31 +08:00
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
{{- $ThemeVersion := "3.6.0" -}}
|
||
<footer class="site-footer">
|
||
<section class="copyright">
|
||
©
|
||
{{ if and (.Site.Params.footer.since) (ne .Site.Params.footer.since (int (now.Format "2006"))) }}
|
||
{{ .Site.Params.footer.since }}–{{ now.Format "06" }}
|
||
{{ else }}
|
||
{{ now.Format "2006" }}
|
||
{{ end }}
|
||
{{ .Site.Title }}
|
||
</section>
|
||
|
||
<section class="powerby">
|
||
{{ with .Site.Params.footer.customText }}
|
||
{{ . | safeHTML }} <br/>
|
||
{{ end }}
|
||
|
||
{{- $Generator := `<a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a>` -}}
|
||
{{- $Theme := printf `<b><a href="https://github.com/CaiJimmy/hugo-theme-stack" target="_blank" rel="noopener" data-version="%s">Stack</a></b>` $ThemeVersion -}}
|
||
{{- $DesignedBy := `<a href="https://jimmycai.com" target="_blank" rel="noopener">Jimmy</a>` -}}
|
||
|
||
{{ T "footer.builtWith" (dict "Generator" $Generator) | safeHTML }} <br />
|
||
{{ T "footer.designedBy" (dict "Theme" $Theme "DesignedBy" $DesignedBy) | safeHTML }}
|
||
</section>
|
||
</footer>
|