film/layouts/reviews/single.html
2022-10-16 17:29:55 +09:00

25 lines
728 B
HTML

{{ define "main" }}
<article class="review">
<header class="review-header">
{{ if .Params.image }}
<div class="review-poster">
<img src={{.Params.image}} alt="Poster">
{{ if .Params.favorite }}
<a class="review-favorite" href="{{.Site.BaseURL}}favorites">
<span hidden>Favorite</span>
{{ partial "star.html" }}
</a>
{{end}}
</div>
{{ end }}
<h1>{{- .Title -}}</h1>
<h2 class="subtitle-small color:deemphasize" style="margin-top: -30px">
{{- .PublishDate | time.Format ":date_long" -}}
</h2>
{{ partial "quicklook.html" . }}
</header>
<div class="core-content">
{{- .Content -}}
</div>
</article>
{{ end }}