blob: a1f0f088497509779ae3dcb3d0daf6487bbe8570 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{{ define "main" }}
{{ partial "open_section.html" . }}
{{ range .Paginator.Pages.ByPublishDate.Reverse }}
<div class="stripe-dark">
{{ partial "post.html" . }}
</div>
{{ end }}
{{ partial "pagination.html" . }}
{{ end }}
|