24 lines
No EOL
1,021 B
HTML
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">
|
|
© {{ 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> |