aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/base-footer.html
blob: a29ff93db2e5ad7864c9bfd32754f585e803ffe5 (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 ((or .Params.author .Site.Author.default.footer) | default "default") -}}

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