blob: 291c4b286bb27e76f198ce1cde8214938b08dd49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{ $h := .h }}
{{ $is_first := true}}
{{ range .pages }}
{{ if $is_first }}
{{ $is_first = false }}
{{ else }}
<hr class="article-preview-hr">
{{ end }}
{{ partial "preview/post.html" (dict
"h" $h
"page" .)
}}
{{ end }}
|