PUBLISH: render first 3 summary tags with non-lazy images
This commit is contained in:
parent
9c3f532357
commit
b9e28bef46
22 changed files with 443 additions and 310 deletions
|
|
@ -32,8 +32,12 @@
|
|||
</header>
|
||||
<div class="cards">
|
||||
{{ range (where .Site.Pages "Section" "reviews") }}
|
||||
{{ range .Pages }}
|
||||
{{- .Render "summary" -}}
|
||||
{{ range $index, $element := .Pages }}
|
||||
{{ if gt 3 $index}}
|
||||
{{- $element.Render "eager_summary" -}}
|
||||
{{ else }}
|
||||
{{- $element.Render "summary" -}}
|
||||
{{end}}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue