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

footer.html « partials « layouts - github.com/humrochagf/colordrop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2dce084953b30cd1604de89af43b681aa0cd930 (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
28
29
30
31
32
33
<footer>
  <div class="container">
    <div class="footer-navigation">
      {{ $rssPage := .OutputFormats.Get "rss" }}

      {{ range .Site.Menus.footer }}
        {{ if eq .Name "rss" }}
          {{ if $rssPage }}
            <a href="{{ $rssPage.Permalink }}">
              {{ partial "svg" .Name }}
            </a>
          {{ else }}
            <a href="{{ "/blog/index.xml" | absLangURL }}">
              {{ partial "svg" .Name }}
            </a>
          {{ end }}
        {{ else }}
          <a href="{{ .URL | absLangURL }}">
            {{ partial "svg" .Name }}
          </a>
        {{ end }}
      {{ end }}
    </div>
  </div>

  {{ if .Site.Copyright }}
    <p>{{ .Site.Copyright }}</p>
  {{ end }}

  <p class="made-with-love">
    <a href="https://github.com/humrochagf/colordrop"><b>Colordrop</b></a> theme | Made with {{ partial "svg" "heart" }} by <a href="https://humberto.io/"><b>Humberto Rocha</b></a>
  </p>
</footer>