{{ define "main" -}}

Restish Blog

{{ .Title }}

{{ with .Description -}}

{{ . }}

{{ end -}} {{ with .Content -}}
{{ . }}
{{ end -}}
{{ $pages := where .Site.RegularPages "Section" .Section -}}
{{ if $pages -}}
{{ range $pages -}}
{{ with index .Params.categories 0 -}} {{ . }} {{ end -}}

{{ .Title }}

{{ with .Description -}}

{{ . }}

{{ end -}}
{{ end -}}
{{ else -}}

No posts yet.

{{ end -}}
{{ end -}}