{{ define "title" }}{{ if .Items }}({{ len .Items }}) {{ end }}Intake{{ end }}
{{ define "buttons" -}}
{{- if .Link }}⇗
{{ end -}}
{{ end }}
{{ define "item-title" -}}
{{ or .Title .Id | raw }}
{{- end }}
{{ define "content" -}}
Home
[Active | All]
{{ if .Items }}
{{ range .Items }}
{{/* The item title is a clickable if there is body content */}}
{{ if .Body }}
{{ template "buttons" . }}
{{ template "item-title" . }}
{{ if .Body }}
{{ raw .Body }}
{{ end }}
{{ template "buttons" . }}
{{ else }}
{{ template "buttons" . }}
{{ template "item-title" . }}
{{ end }}
{{/* end if .Body */}}
{{/* author/time footer line */}}
{{ if or .Author .Time }}
{{ .Author }}
{{ .Time | tsToDate }}
{{ end }}
{{/* source/id/created footer line */}}
{{ .Source }}/{{ .Id }}
{{ .Created | tsToDate }}
{{ end }}
{{/* end range .Items */}}
{{/* if .Items */}}
{{ else }}
Feed is empty
{{ end }}
{{/* end if .Items */}}
{{ end }}
{{/* end define "content" */}}