{{ define "main" }} {{ $paginator := .Paginate .Data.Pages }} {{/* Ignore entirely from search, as we want to index the individual notes, not this stream */}}
{{ partial "generic-list-header.html" . }}

{{ with .Params.emoji }}{{end}} {{ title (replace .Title "-" " ") }}

{{ partial "alternates.html" . }}
{{ if .Content }}
{{ .Content }}
{{ end }}
{{ range $paginator.Pages }}
{{ .Content }}
{{ partial "year-relative-date.html" .Date }} {{ if collections.In .Params.tags "from-twitter" }}{{ partialCached "svg.html" (dict "name" "twitter") "twitter" }}{{ end }}
{{ end }}
{{ partial "pagination-list.html" . }}
{{ end }}