aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/base-footer.html
blob: cae0cbf2705fe00abb46d07a07e7a1ef38589577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{- $kind := in (slice "home" "taxonomy" "term") .Page.Kind -}}
{{- $author := index .Site.Data.authors .Section -}}

<footer>
  {{- if $kind -}}
    {{- with $footer := (and $kind .Site.Author.default.footer) -}}
      {{ $footer | markdownify }} &middot;
      Copyright &copy; {{ now | time.Format "2006"}} &middot;
    {{- end -}}
  {{- else -}}
    {{ or $author.default.footer $author.title | markdownify }} &middot;
  {{- end }}
  <a href="/sitemap.xml" >Site Map</a>
</footer>