mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
11.51.2022 b01a65c902a0f59b865f36411b6de2677cec807a
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
34
35
36
37
38
39
40
41
<footer class="footer footer--{{ .footerClassModifier }}">
  <div class="by_farbox">
    <ul class="footer__list">
      <li class="footer__item">
        &copy;
        {{ if isset .context.Site.Params "copyright" }}
          {{ replace .context.Site.Params.copyright "{{ YEAR }}" (now.Format "2006") | markdownify }}
 
        {{ else }}
          {{ .context.Site.Params.author }}
          {{ now.Format "2006" }}
 
 
        {{ end }}
      </li>
      {{ range .context.Site.Menus.footer }}
        <li class="footer__item">
          <a
            href="{{ .URL }}"
            {{ if strings.HasPrefix .URL "http" }}
              target="_blank" rel="noopener noreferrer"
 
            {{ end }}
            title="{{ .Title }}"
          >
            {{ .Name }}
          </a>
        </li>
 
      {{ end }}
    </ul>
  </div>
</footer>
{{- partial "medium-zoom.html" .context -}}
{{- partial "math.html" .context -}}
{{- template "_internal/google_analytics_async.html" .context -}}
{{- if and (hugo.IsProduction) (.context.Site.Params.gtagId) -}}
  {{ partial "google-analytics-gtag-async.html" .context }}
 
 
{{- end -}}