film/layouts/reviews/single.html
2022-08-27 13:11:46 +09:00

19 lines
509 B
HTML

{{ define "main" }}
<article class="review">
<header class="review-header">
{{ if .Params.image }}
<div class="review-poster">
<img src={{.Params.image}} alt="Poster">
</div>
{{ end }}
<h1>{{- .Title -}}</h1>
<h2 class="subtitle-small color:deemphasize" style="margin-top: -30px">
{{- .PublishDate.Format "August 2, 2006" -}}
</h2>
{{ partial "quicklook.html" . }}
</header>
<div class="core-content">
{{- .Content -}}
</div>
</article>
{{ end }}