24 lines
No EOL
648 B
HTML
24 lines
No EOL
648 B
HTML
{{ with .Site.Params.footer }}
|
|
<footer class="footer">
|
|
{{ if .social }}
|
|
<div class="social">
|
|
{{ range .social }}
|
|
{{ partial "components/icon.html" . }}
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
{{ if .links }}
|
|
<ul class="links">
|
|
{{- range .links }}
|
|
<li class="link"><a href="{{ .url }}">{{ .text }}</a></li>
|
|
{{- end }}
|
|
</ul>
|
|
{{ end }}
|
|
{{ if .copyright }}
|
|
<p class="copyright">
|
|
© {{ dateFormat "2006" now }} {{ .copyright }}</a>
|
|
</p>
|
|
{{ end }}
|
|
</footer>
|
|
{{ end }}
|
|
<a class="totop hide" id="totop" href="#"><i class="icon-angle-up"></i></a> |