hugo-theme-hyde-hyde/layouts/partials/sidebar/copyright.html

14 lines
442 B
HTML
Raw Normal View History

2018-11-29 21:15:40 +00:00
{{ with .Site.Params.copyright }}
2018-09-20 01:43:46 +00:00
<div class="copyright">
2018-11-29 21:15:40 +00:00
&copy; {{ now.Format "2006"}} {{ . | safeHTML }}
{{ with $.Site.Params.license }}
<a href="{{$.Site.Params.licenseURL | safeHTML}}">{{ . | safeHTML }}</a>
2018-09-20 01:43:46 +00:00
{{end}}
</div>
2018-11-29 21:15:40 +00:00
{{ 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 }}