16 lines
676 B
HTML
16 lines
676 B
HTML
<footer class="site-footer">
|
|
<div class="foot-inner">
|
|
<nav class="foot-legal">
|
|
{{ range (where .Site.Pages "Section" "legal") }}
|
|
{{ if .IsPage }}<a href="{{ .RelPermalink }}">{{ .Title }}</a>{{ end }}
|
|
{{ end }}
|
|
</nav>
|
|
<p class="foot-note">{{ T "footerFreeSoftware" }}{{ with .Site.Params.sourceURL }} · <a href="{{ . }}">{{ T "footerSource" }}</a>{{ end }}</p>
|
|
<p class="foot-note">
|
|
{{ T "footerPublishedBy" }}
|
|
<a href="{{ .Site.Params.publisherURL }}">{{ .Site.Params.publisher }}</a>
|
|
· {{ T "footerContact" }}:
|
|
<a href="mailto:{{ .Site.Params.email }}">{{ .Site.Params.email }}</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|