resume-a4/layouts/partials/footer.html
Jaakko Kantojärvi 3e13c5ea2d Rewrite all layouts, data and configuration structures
* Add support for multiple pages
* Add support to reorder and move features to columns and pages
* Add support for new sections with generic widgets
2021-03-03 18:01:09 +02:00

27 lines
872 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{ if .Footer.links }}
<span class="footer-item">
{{ range .Footer.links }}
<span class="footer-link">
{{ .prefix }}
<a href="{{ .url }}" class="no-external-icon">
<span>{{ .title }} </span>
{{ if and $.useFontAwesome .icon }}<i class="{{ .icon }}"></i>{{ end }}
</a>
</span>
{{ end }}
</span>
{{ end }}
<span class="footer-item">
{{ .Footer.footnote }}
</span>
{{ if .Footer.credits }}
<span class="footer-item" id="credits">
<span>The open-source theme Resume-A4 is designed by</span>
<a href="https://gitlab.com/mertbakir/resume-A4" class="no-external-icon"><span>Mert&nbsp;Bakır</span>&nbsp;<i class="fab fa-gitlab"></i></a>
<br>
<span>and template code by</span>
<a href="https://gitlab.com/raphendyr/hugo-theme-resume-A4" class="no-external-icon"><span>Jaakko&nbsp;Kantojärvi</span>&nbsp;<i class="fab fa-gitlab"></i></a>
</span>
{{ end }}