{{ define "main" }} {{ if or (eq .Kind "term") (eq .Kind "taxonomy") }}

Filtering for "{{ .Title }}" {{ if eq .Kind "term" }} {{ with .OutputFormats.Get "rss" }} {{ partial "icon.html" "rss" }} {{ end }} {{ end }}

{{ else }}

{{ .Title | markdownify }} {{ with .OutputFormats.Get "rss" }} {{ partial "icon.html" "rss" }} {{ end }}

{{ end }} {{ if eq .Kind "taxonomy" }} {{ else }} {{ range .Paginator.Pages }}

{{ .Title | markdownify }}

{{ if or .Date (.GetTerms "tags") }}
{{ if .Date }} {{ partial "icon.html" "calendar" }} {{ if ne .Lastmod .Date }} {{ end }} {{ end }} {{ range (.GetTerms "tags") }} {{ partial "icon.html" "tag" }} {{ .LinkTitle }} {{ end }}
{{ end }}
{{ if .Description }} {{ .Description | markdownify }} {{ else }} {{ .Summary | markdownify }} {{ end }}
Read more →
{{ else }}
No posts here!
{{ end }} {{ end }} {{ end }}