Welcome to mirror list, hosted at ThFree Co, Russian Federation.

footer.html « partials « layouts - github.com/uicardiodev/hugo-sodium-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bce5c8cb67b62c80457cbe3361fb1999ff183889 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ $footer := .Site.Data.footer }}
<section id="footer" class="py-3">
  <div class="container">
    <span class="text-muted">{{ $footer.footertext }}</span>
    <span class="float-right">
      {{ range $key, $value := .Site.Data.social }}
        <a href="https://{{ $key }}.com/{{ $value }}" class="ml-2 btn-{{$key}}"><i class="fab fa-{{ $key }}"></i></a>
      {{ end }}
    </span>
  </div>
</section>