123456789101112131415161718192021222324252627 |
- {{ partial "header.html" . }}
- {{ partial "navbar.html" . }}
- {{ partial "page_header.html" . }}
- <div class="universal-wrapper">
- {{ with .Content }}
- <div class="article-style" itemprop="articleBody">{{ . }}</div>
- {{ end }}
- {{ $paginator := .Paginate .Data.Pages }}
- {{ range $paginator.Pages }}
- {{ if eq $.Params.view 1 }}
- {{ partial "post_li_list" . }}
- {{ else if eq $.Params.view 3 }}
- {{ partial "post_li_card" . }}
- {{ else }}
- {{ partial "post_li_compact" . }}
- {{ end }}
- {{ end }}
- {{ partial "pagination" . }}
- </div>
- {{ partial "footer_container.html" . }}
- {{ partial "footer.html" . }}
|