You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
457 B
HTML
19 lines
457 B
HTML
<footer id="footer">
|
|
{{ if .Site.Social }}
|
|
{{ partial "social.html" . }}
|
|
{{ end }}
|
|
|
|
<p class="copyright">
|
|
{{ with .Site.Params.copyright }}
|
|
{{ . | markdownify }}
|
|
{{ else }}
|
|
© Copyright
|
|
{{ now.Format "2006"}}
|
|
<span class="split">
|
|
{{ partial "svgs/heart.svg" (dict "fill" "#bbbbbb" "width" 15 "height" 15 ) }}
|
|
</span>
|
|
{{ .Site.Params.Author }}
|
|
{{ end }}
|
|
</p>
|
|
</footer>
|