setup fontawesome, footer update

This commit is contained in:
gurusabarish
2020-11-27 20:38:13 +05:30
parent 1f9957e1a9
commit c18d6a1fd9
26 changed files with 9640 additions and 74 deletions
+28 -22
View File
@@ -1,25 +1,31 @@
<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>
<footer>
<div class="container bg-transparent py-4">
<div class="row row-eq-height align-items-center">
<div class="col-md-4 nav-link text-center font-weight-bold">
<a class="text-uppercase" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
</div>
<div class="col-md-4 text-center order-2 order-lg-1 order-md-1">
<div class="d-none d-sm-none d-md-block">
<a href="{{ .Site.BaseURL }}">
<img alt="Footer logo" src="{{ .Site.Params.favicon | default "/images/favicon.png"}}"
height="40px" width="40px">
</a>
</div>
&copy; {{ .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 class="col-md-4 font-weight-bold order-1">
<ul class="nav justify-content-center">
{{ range site.Params.customMenus }}
<li class="nav-link">
<a href="{{.Url}}" aria-label="{{ .name }}">{{ .name }}</a>
</li>
{{ end }}
</ul>
</div>
</div>
&copy; {{ .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>