erambler/themes/mnemosyne/layouts/partials/footer.html

27 lines
790 B
HTML
Raw Normal View History

2021-04-03 14:43:13 +00:00
<div class="footer">
<div class="container">
<div class="columns">
<footer class="column is-8 is-offset-2 has-text-centered">
{{ partial "social" . }}
2021-04-03 14:43:13 +00:00
<p>
&copy; {{ now.Year }}
<a href="{{ .Site.BaseURL }}">{{ .Site.Params.Author }}</a>
| Built by: <a href="https://gohugo.com/">Hugo</a>
| Theme: <a href="https://tildegit.org/petrichor/theme-mnemosyne-hugo">Mnemosyne</a>
</p>
2021-04-07 15:25:27 +00:00
{{ with .Site.Params.netlify }}
<p class="mt-4">
<a href="https://app.netlify.com/sites/{{.name}}/deploys">
Build status: <img src="https://api.netlify.com/api/v1/badges/{{.id}}/deploy-status">
</a>
</p>
{{ end }}
2021-04-03 14:43:13 +00:00
{{ with .Site.Copyright | safeHTML }}
2021-04-07 15:25:27 +00:00
<hr />
<p>{{.}}</p>
2021-04-03 14:43:13 +00:00
{{ end }}
</footer>
</div>
</div>
</div>