website/layouts/partials/sections/footer/copyright.html

24 lines
1008 B
HTML
Raw Permalink Normal View History

2023-06-13 20:13:00 +02:00
<div class="container py-4">
<div class="row justify-content-center">
<div class="col-md-4 text-center">
<div class="pb-2">
<a href="{{ .Site.BaseURL }}" title="{{ .Site.Title }}">
<img alt="Footer logo" src="{{ .Site.Params.navbar.brandLogo | default .Site.Params.favicon }}"
height="40px" width="40px">
</a>
</div>
&copy; {{ now.Format "2006"}} {{ .Site.Params.copyright }} {{ .Site.Params.terms.copyright | default "All Rights Reserved" }}
<div class="text-secondary">
Made with
<span class="text-danger">
&#10084;
</span>
2023-06-13 23:50:37 +02:00
by
2023-06-13 20:13:00 +02:00
<a href="https://gitea.urkob.com/urko/website" target="_blank"
title="Designed and developed by Urko">
2023-06-13 21:23:24 +02:00
Urko
2023-06-13 20:13:00 +02:00
</a>
</div>
</div>
</div>
</div>