aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/base-title.html
blob: c8736b17484f1a828f9446b418f513c88b9ebb4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{- $author := index .Site.Data .Section -}}

{{- if not (eq .Title $.Site.Title) -}}
  {{- with $title := or .Title .Summary -}}
    {{ $title }} —
  {{ end }}
{{- end -}}

{{- with $title := $.Site.Title -}}
  {{- if (in (slice
      "home"
      "taxonomy"
      "term"
    ) $.Page.Kind)
  -}}
    {{ $title }}
  {{- else -}}
    {{ $author.title }}
  {{- end -}}
{{- end -}}