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

footer.html « partials « layouts - github.com/kdevo/osprey-delight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 199ca991d2e7f3d1d05a2881b9337f8e8f88ee4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<footer>
  <div class="row center-xs social">
  {{ range .Site.Params.Social -}}
    <div class="col-xs-2">
      <a target="_blank" rel="noopener" href="{{ .url }}">
        {{ partial "icon" .type }}
      </a>
    </div>
  {{- end }}
  </div>
  {{ if (.Site.Params.copyright) -}}
  <div class="row center-xs">
    <div class="col-xs">
      <small>
      {{ if .Site.Params.copyright }}
        {{ i18n "copyright" }} &copy; {{ now.Format "2006" }} {{ .Site.Title }}
      {{ end }}
      {{ if or (.Site.Params.credit) (eq (isset .Site.Params "credit") false) -}}
      <div class="col-xs">
          <small>Theme: <a href="https://github.com/kdevo/osprey-delight" target="_blank" rel="noopener">Osprey Delight</a></small>
      </div>
      {{- end }}
      </small>
    </div>
  </div>
  {{- end }}
</footer>