film/layouts/reviews/single.html
2022-08-24 14:01:35 +09:00

14 lines
280 B
HTML

{{ define "main" }}
<article class="review">
<header>
<h1>{{- .Title -}}</h1>
{{ if .Params.image }}
<img src={{.Params.image}} alt="Poster">
{{ end }}
{{ partial "quicklook.html" . }}
</header>
<div>
{{- .Content -}}
</div>
</article>
{{ end }}