This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
landingpage/layouts/partials/footer.html

21 lines
701 B
HTML

<!-- Footer -->
{{/* we need to overwrite the footer from the template, as the original only accepts fa-icons from the 'brand' section */}}
<footer id="footer">
<ul class="icons">
{{ range .Site.Params.share }}
<li><a href="{{ .link }}" class="icon {{ .icon }}"><span class="label">{{ .title }}</span></a></li>
{{ end }}
</ul>
<ul class="copyright">
{{ with .Site.Params.copyright }}
<li>{{ . | markdownify }}</li>
{{ end }}
{{ with .Site.Params.design }}
<li>{{ . | markdownify }}</li>
{{ end }}
{{ with .Site.Params.author }}
<li>{{ . | markdownify }}</li>
{{ end }}
</ul>
</footer>