48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
|
<!-- Footer content -->
|
||
|
{{ if .Site.Params.ShowBio }}
|
||
|
<div class="h-card">
|
||
|
<img class="u-photo" src="{{ .Site.Params.Avatar | absURL }}" />
|
||
|
<div class="card-content">
|
||
|
<h2 class="card-name"><a class="p-name u-url" href="{{ .Site.BaseURL }}" rel="me">{{ .Site.Params.Author }}</a></h2>
|
||
|
<p class="card-subhead">
|
||
|
<span class="p-locality">{{ .Site.Params.IndieWeb.City }}</span>,
|
||
|
<span class="p-country-name">{{ .Site.Params.IndieWeb.Country }}</span><br />
|
||
|
<a class="u-email" href="mailto:{{ .Site.Params.IndieWeb.EmailAddress }}">Email me</a>
|
||
|
</p>
|
||
|
</div>
|
||
|
<p class="p-note">{{ .Site.Params.Biography }}</p>
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
<div id="footer">
|
||
|
{{ if or (.NextPage) (.PrevPage) }}
|
||
|
<nav id="article-skip">
|
||
|
<div class="next">
|
||
|
{{ if and (.NextPage) (not .Params.Menu) }}
|
||
|
<a alt="Newer article" href="{{ .NextPage.Permalink }}">← Newer</a>
|
||
|
{{ else }}
|
||
|
<p> </p>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
<div class="top">
|
||
|
<a alt="Top of page" href="#">Top</a>
|
||
|
</div>
|
||
|
<div class="prev">
|
||
|
{{ if and (.PrevPage) (not .Params.Menu) }}
|
||
|
<a alt="Older article" href="{{ .PrevPage.Permalink }}">Older →</a>
|
||
|
{{ else }}
|
||
|
<p> </p>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
</nav>
|
||
|
{{ end }}
|
||
|
{{ partial "social.html" . }}
|
||
|
{{ with .Site.Copyright }}
|
||
|
<p class="copyright">
|
||
|
{{ . }}
|
||
|
</p>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
|
||
|
<!-- Close the body/html document -->
|
||
|
</body>
|
||
|
</html>
|