Welcome to mirror list, hosted at ThFree Co, Russian Federation.

footer.html « partials « layouts - gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a05b1c5868fb284d7c6f617f2d5eece603bebf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{ 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 }}