2024-03-17 15:41:27 -04:00
|
|
|
{{- $ThemeVersion := "3.24.2" -}}
|
2020-08-22 07:20:08 -04:00
|
|
|
<footer class="site-footer">
|
2020-12-20 06:34:44 -05:00
|
|
|
<section class="copyright">
|
|
|
|
©
|
|
|
|
{{ if and (.Site.Params.footer.since) (ne .Site.Params.footer.since (int (now.Format "2006"))) }}
|
|
|
|
{{ .Site.Params.footer.since }} -
|
|
|
|
{{ end }}
|
2023-08-12 05:29:56 -04:00
|
|
|
{{ now.Format "2006" }} {{ default .Site.Title .Site.Copyright }}
|
2020-12-20 06:34:44 -05:00
|
|
|
</section>
|
|
|
|
|
2020-08-22 07:20:08 -04:00
|
|
|
<section class="powerby">
|
2020-12-20 06:34:44 -05:00
|
|
|
{{ with .Site.Params.footer.customText }}
|
|
|
|
{{ . | safeHTML }} <br/>
|
|
|
|
{{ end }}
|
|
|
|
|
2020-11-28 06:29:43 -05:00
|
|
|
{{- $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>` -}}
|
|
|
|
|
2020-12-18 19:41:26 -05:00
|
|
|
{{ T "footer.builtWith" (dict "Generator" $Generator) | safeHTML }} <br />
|
|
|
|
{{ T "footer.designedBy" (dict "Theme" $Theme "DesignedBy" $DesignedBy) | safeHTML }}
|
2020-08-22 07:20:08 -04:00
|
|
|
</section>
|
2021-08-15 06:05:12 -04:00
|
|
|
</footer>
|