Jorge Martínez López 8334941578
Update site-footer.html
Change footer to allow changing the copyright.
2019-08-18 19:59:53 +01:00

9 lines
529 B
HTML
Executable File

<footer class="{{ .Site.Params.background_color_class | default "bg-black" }} bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<div class="f4 fw4 white-70 dn dib-ns pv2 ph3">
{{ with .Site.Params.copyright }}{{. | safeHTML}}{{ else }}&copy; {{ now.Format "2006"}}. All rights reserved. {{end}} <a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="{{ .Site.BaseURL }}"> {{ .Site.Title }} </a>
</div>
<div>{{ partial "social-follow.html" . }}</div>
</div>
</footer>