hugo-theme-zzo/layouts/partials/footer/site-footer.html

17 lines
670 B
HTML
Raw Normal View History

2019-11-04 13:09:44 +00:00
<footer class="footer">
{{ partial "footer/select-lang" . }}
{{ partial "footer/links-social.html" . }}
{{ partial "footer/go-to-top" . }}
2019-11-04 13:09:44 +00:00
<hr />
{{ if $.Param "showPoweredBy" }}
2019-11-13 16:07:46 +00:00
<div class="footer__poweredby">
{{ if $.Site.Copyright }}
<p class="caption">
{{ with $.Site.Copyright }}{{ replace . "{year}" now.Year | markdownify}}{{ end }}
</p>
2019-11-13 16:07:46 +00:00
{{ end }}
<p class="caption">Powered by <a href="https://gohugo.io/" rel="noreferrer">Hugo</a> and the <a href="https://github.com/zzossig/hugo-theme-zzo" rel="noreferrer">Zzo theme</a></p>
2019-11-04 13:09:44 +00:00
</div>
{{ end }}
2019-11-04 13:09:44 +00:00
</footer>