Welcome to mirror list, hosted at ThFree Co, Russian Federation.

copyright.html « sidebar « partials « layouts - github.com/htr3n/hyde-hyde.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9227d812314eb4224f0d52a7136948242b9e817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ with .Site.Params.copyright }}
<div class="copyright">
  &copy; {{ 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 }}