25 lines
991 B
HTML
25 lines
991 B
HTML
<footer class="footer py-3 text-muted text-center">
|
|
<div class="pb-2">
|
|
<div class="footer-site pb-2 font-weight-bold">
|
|
<a class="text-uppercase" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
|
|
</div>
|
|
© {{ .Site.Params.copyright }} All Rights Reserved<br>
|
|
|
|
Made with
|
|
<a class="text-dark" href="https://github.com/gurusabarish/hugo-profile"
|
|
aria-label="hugo-profile">Hugo-profile</a>
|
|
and
|
|
<a class="text-dark" href="https://gohugo.io" aria-label="hugo">Hugo</a>
|
|
|
|
by
|
|
{{ if .Site.Author.name }}
|
|
{{ if .Site.Author.website }}
|
|
<a class="text-dark" href="{{ .Site.Author.website }}" aria-label="github handle">{{ .Site.Author.name }}</a>
|
|
{{ else }}
|
|
{{ .Site.Author.name }}
|
|
{{ end }}
|
|
{{ else }}
|
|
<a class="text-dark" href="https://github.com/gurusabarish" aria-label="github handle">GuruSabarish</a>
|
|
{{ end }}
|
|
</div>
|
|
</footer> |