{{ define "main" }} {{ $baseUrl := .Site.BaseURL }}
{{ if .Params.featured_image }}
{{ with .Resources.GetMatch .Params.featured_image }} {{ .Name }} {{ else }} {{ .Params.featured_image }} {{ end }}
{{ end }}

{{ .Title }}

{{ if .GitInfo }} {{ with .GitInfo.AuthorName }}
{{ . }}
{{ end }} {{ end }} {{ with .Params.website }} {{ end }} {{ if .Params.description }}
{{ .Params.description }}
{{ end }} {{ $rating := 0 }} {{ if and (isset .Params "rating") (le .Params.rating 5) }} {{ $rating = .Params.rating }} {{ end }} {{ range $i := (seq $rating) }} {{ end }} {{ range $i := (seq (sub 5 $rating)) }} {{ end }}
{{ range .Params.Tags }} {{ . }} {{ end }}
{{ .Content }}
{{- if or (eq .Params.comment true) (and (ne .Params.comment false) (eq site.Params.comment true)) -}}
{{- partial "comments.html" . -}}
{{- end -}} {{ end }}