PUBLISH: render first 3 summary tags with non-lazy images

This commit is contained in:
Campbell Alden 2022-11-02 13:44:42 +09:00
parent 9c3f532357
commit b9e28bef46
22 changed files with 443 additions and 310 deletions

View file

@ -5,8 +5,12 @@
<a class="button button:large" href="{{.Site.BaseURL}}genres">Back to Genres</a>
</header>
<div class="cards">
{{ range .Pages }}
{{- .Render "summary" -}}
{{ range $index, $element := .Pages }}
{{ if gt 3 $index}}
{{- $element.Render "eager_summary" -}}
{{ else }}
{{- $element.Render "summary" -}}
{{end}}
{{ end }}
</div>
</section>