hugo-internet-weblog/layouts/partials/page_footer.html

25 lines
990 B
HTML
Raw Normal View History

2016-02-19 23:35:42 -05:00
<footer>
<div class="footer_text">
<div>
2025-01-29 10:17:27 +01:00
<h3>Hi, <a href="{{ .Site.Params.Author.aboutpage }}">ich bin {{ .Site.Params.Author.firstname }}!</a></h3>
2016-02-19 23:35:42 -05:00
<p>
{{ partial "bio.html" . }}
</p>
</div>
{{ if isset .Site.Params.Author "flickrid" | and ( not ( eq .Site.Params.Author.flickrid "" ) ) }}
2016-02-19 23:35:42 -05:00
<div>
<h3><a href="https://www.flickr.com/photos/{{ .Site.Params.Author.flickrid }}/">Photo Stream</a></h3>
2016-02-19 23:35:42 -05:00
<div id="photos"></div>
</div>
</div>
{{ end }}
2016-02-19 23:35:42 -05:00
</div>
{{ if .Site.Params.showcopyright }}
2016-02-19 23:35:42 -05:00
<div class="footer_copyright">
&copy; {{ now.Format "2006" }} <a href="{{ .Site.Params.Author.aboutpage }}">{{ .Site.Params.Author.firstname }} {{ .Site.Params.Author.lastname }}</a>
2025-01-28 20:58:31 +01:00
{{ with .Site.Params.Author.location }} - Made in {{ . }}{{ end }} | <a href="{{ .Site.Params.statuspage }}" target="_blank">{{ .Site.Params.statuspagename }}</a>
2016-02-19 23:35:42 -05:00
</div>
{{ end }}
</footer>