4a676a26d2
.Site.Params.since is an option to store the year site development started: (c) 2019 - 2020
13 lines
533 B
HTML
13 lines
533 B
HTML
{{ with .Site.Params.copyright }}
|
|
<div class="copyright">
|
|
© {{ with $.Site.Params.since }}{{ if lt . now.Year }}{{ . | safeHTML }} - {{ end }}{{ end }}{{ now.Format "2006"}} {{ . | safeHTML }}
|
|
{{ with $.Site.Params.license }}
|
|
<a href="{{$.Site.Params.licenseURL | safeHTML}}">{{ . | safeHTML }}</a>
|
|
{{end}}
|
|
</div>
|
|
{{ end }}
|
|
{{ with .Site.Params.showBuiltWith }}
|
|
<div class="builtwith">
|
|
Built with <a href="https://gohugo.io">Hugo</a> ❤️ <a href="https://github.com/htr3n/hyde-hyde">hyde-hyde</a>.
|
|
</div>
|
|
{{ end }}
|