{{ define "main" }} {{ if or (eq .Section "article") (eq .Section "articles") (eq .Section "blog") (eq .Section "blogs") (eq .Section "news") (eq .Section "categories") (eq .Section "tags") }}
{{ $image:= .Params.image }} {{ if $image }} {{ if hasPrefix $image "http" }} {{ .Title }} {{ else }} {{ if fileExists (add `assets/` .Params.image) }} {{$img:= resources.Get (.Params.image) }} {{$img:= $img.Resize "850x webp"}} Post Thumbnail {{ else }} {{.Title | title}} {{ end }} {{ end }} {{ else }} {{.Title | title}} {{ end }}

{{.Title}}

{{.Content}}
{{ if .Site.DisqusShortname }}
{{ template "_internal/disqus.html" . }}
{{ end }}
{{ partial "sidebar.html" . }}
{{ else }} {{ .Render "default" }} {{ end }} {{ end }}