3e13c5ea2d
* Add support for multiple pages * Add support to reorder and move features to columns and pages * Add support for new sections with generic widgets
27 lines
872 B
HTML
27 lines
872 B
HTML
{{ 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 Bakır</span> <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 Kantojärvi</span> <i class="fab fa-gitlab"></i></a>
|
||
</span>
|
||
{{ end }}
|