blob: edbbb57c71b10cb95b033ba3b494cd6236747399 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{{ if .Site.Params.enableCustomHTML }}
{{ partial "custom/above-footer" . }}
{{ end }}
<div class="footer">
<div class="contain">
<p><strong>{{ now.Year }} © {{ .Site.Title }}</strong>
• <a href="#">Back to top</a>
</p>
<p>{{ .Site.Params.description }}</p>
<!-- Please keep this one around to help cState grow <3 -->
<small class="copyright faded">Powered by <a href="https://github.com/cstate/cstate">cState v2.0.2</a></small>
</div>
</div>
{{ if .Site.Params.enableCustomHTML }}
{{ partial "custom/below-footer" . }}
{{ end }}
|