{{ define "main" }}
{{ .Title }}
{{ .Date | time.Format ":date_full" }}
{{ if isset .Params "image" }}
{{ with resources.GetRemote .Params.image }}
{{ with .Err }}
{{ errorf "%s" . }}
{{ else }}
{{ $image := . }}
{{ $image := $image.Resize "250x" }}
{{ end }}
{{ else }}
{{ errorf "unable to get remote resource %q" .Params.image }}
{{ end }}
{{ end }}
{{ if isset .Params "amazon" }}
Rating:
{{ if isset .Params "rating" }} {{ $rating := .Params.rating }} {{ range $i, $num := (seq $rating) }} ⭐ {{ end }} {{ else }}N/A
{{ end }}