{{ define "main" }}
{{ partial "mobile_nav_toggle.html" . }}

{{ .Title }}

{{ if isset $.Params "date" }} {{ $createdate := .Date.Format (.Site.Params.dateFormat | default "2 January 2006") }} {{ end }}
{{ .Content | safeHTML }} {{ if isset $.Params "score" }}

{{ $score := $.Params.score }} Final verdict: {{ $score }}/5 {{ range after 0 (seq $score)}} {{ end }} {{ range after 0 (seq (sub 5 $score))}} {{ end }} {{ if eq $score 5 }} It was amazing! {{ else if eq $score 4 }} I really liked it! {{ else if eq $score 3 }} I liked it. {{ else if eq $score 2 }} It was OK. {{ else if eq $score 1 }} I did not like it. {{ else }} Horrible. {{ end}}

{{ end }}
{{ if isset $.Params "played_on" }}
Played on: {{ if eq .Params.played_on "winxp" }} Windows XP - Core2Duo 2006 build. {{ else if eq .Params.played_on "win98" }} Windows 98 SE - Athlon 1.4 2001 build. {{ else if eq .Params.played_on "486" }} DOS 6.22 - 486DX2-66 1993 build. {{ end }}
{{ end }}
{{ if isset $.Params "tags" }} Categorized under: {{ range .Params.tags }} {{ . }} {{ end }} {{ end }}
{{ partial "single-comments" . }} {{ partial "single-mentions" . }}
{{ end }}