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

24 lines
1,021 B
HTML
Raw Normal View History

2016-02-19 23:35:42 -05:00
<footer>
<div class="footer_text">
<div>
<h3>Hi, <a href="{{.Site.BaseURL}}{{ .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>
<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>
2016-02-19 23:35:42 -05:00
</div>
</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>
{{ with .Site.Params.Author.location }} - Made in {{ . }}{{ end }} {{ if .Site.Params.statuspageenabled }}| <a href="{{ .Site.Params.statuspage }}" target="_blank">{{ .Site.Params.statuspagename }}</a>{{ end }}
2016-02-19 23:35:42 -05:00
</div>
{{ end }}
</footer>