feat(footer): add copyright since & custom text (#74)

closes https://github.com/CaiJimmy/hugo-theme-stack/issues/55
This commit is contained in:
Jimmy Cai 2020-12-20 12:34:44 +01:00 committed by GitHub
parent ddd6aa2d20
commit cea1064927
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 2 deletions

View file

@ -22,6 +22,10 @@ params:
rssFullContent: true rssFullContent: true
favicon: favicon:
footer:
since: 2020
customText:
dateFormat: dateFormat:
published: Jan 02, 2006 published: Jan 02, 2006
lastUpdated: Jan 02, 2006 15:04 MST lastUpdated: Jan 02, 2006 15:04 MST

View file

@ -11,7 +11,7 @@
</section> </section>
{{- partial "pagination.html" . -}} {{- partial "pagination.html" . -}}
{{ partialCached "footer/footer" . }} {{- partial "footer/footer" . -}}
{{ end }} {{ end }}
{{ define "right-sidebar" }} {{ define "right-sidebar" }}

View file

@ -1,7 +1,18 @@
{{- $ThemeVersion := "1.1.0" -}} {{- $ThemeVersion := "1.1.0" -}}
<footer class="site-footer"> <footer class="site-footer">
<section class="copyright">&copy; {{ now.Format "2006" }} {{ .Site.Title }}</section> <section class="copyright">
&copy;
{{ if and (.Site.Params.footer.since) (ne .Site.Params.footer.since (int (now.Format "2006"))) }}
{{ .Site.Params.footer.since }} -
{{ end }}
{{ now.Format "2006" }} {{ .Site.Title }}
</section>
<section class="powerby"> <section class="powerby">
{{ with .Site.Params.footer.customText }}
{{ . | safeHTML }} <br/>
{{ end }}
{{- $Generator := `<a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a>` -}} {{- $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 -}} {{- $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>` -}} {{- $DesignedBy := `<a href="https://jimmycai.com" target="_blank" rel="noopener">Jimmy</a>` -}}