hugo-internet-weblog/layouts/partials/page_footer.html
Stephan Hadan 7f3307cb47 * Eliminate Flickr because of cookieless browsing experience (#35)
* Change font to "Inter" locally (#36)
2025-02-11 22:13:19 +01:00

24 lines
No EOL
1,021 B
HTML

<footer>
<div class="footer_text">
<div>
<h3>Hi, <a href="{{.Site.BaseURL}}{{ .Site.Params.Author.aboutpage }}">ich bin {{ .Site.Params.Author.firstname }}!</a></h3>
<p>
{{ partial "bio.html" . }}
</p>
</div>
<div>
<h3>Inhalte</h3>
{{ range .Site.Menus.main }}
<a href="{{.URL}}">{{ .Name }}</a><br />
{{ end }}
<a href="{{.Site.BaseURL}}{{ with .Site.Params.Author.aboutpage }}{{ . }}{{ end }}">Über</a>
</div>
</div>
{{ if .Site.Params.showcopyright }}
<div class="footer_copyright">
&copy; {{ now.Format "2006" }} <a href="{{ .Site.Params.Author.aboutpage }}">{{ .Site.Params.Author.firstname }} {{ .Site.Params.Author.lastname }}</a>
{{ with .Site.Params.Author.location }} - Made in {{ . }}{{ end }} {{ if .Site.Params.statuspageenabled }}| <a href="{{ .Site.Params.statuspage }}" target="_blank">{{ .Site.Params.statuspagename }}</a>{{ end }}
</div>
{{ end }}
</footer>