19 lines
812 B
HTML
19 lines
812 B
HTML
<footer>
|
|
<div class="container bg-transparent py-4">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-4 text-center order-2 order-lg-1 order-md-1">
|
|
<div>
|
|
<a href="{{ .Site.BaseURL }}">
|
|
<img alt="Footer logo" src="{{ .Site.Params.favicon | default " /images/favicon.png"}}"
|
|
height="40px" width="40px">
|
|
</a>
|
|
</div>
|
|
© {{ .Site.Params.copyright }} All Rights Reserved
|
|
<div class="text-secondary">
|
|
Powered by
|
|
<a class="text-secondary" href="https://github.com/gurusabarish/hugo-profile">Hugo-profile</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer> |