post.html 640 B

123456789101112131415161718192021222324252627
  1. {{ partial "header.html" . }}
  2. {{ partial "navbar.html" . }}
  3. {{ partial "page_header.html" . }}
  4. <div class="universal-wrapper">
  5. {{ with .Content }}
  6. <div class="article-style" itemprop="articleBody">{{ . }}</div>
  7. {{ end }}
  8. {{ $paginator := .Paginate .Data.Pages }}
  9. {{ range $paginator.Pages }}
  10. {{ if eq $.Params.view 1 }}
  11. {{ partial "post_li_list" . }}
  12. {{ else if eq $.Params.view 3 }}
  13. {{ partial "post_li_card" . }}
  14. {{ else }}
  15. {{ partial "post_li_compact" . }}
  16. {{ end }}
  17. {{ end }}
  18. {{ partial "pagination" . }}
  19. </div>
  20. {{ partial "footer_container.html" . }}
  21. {{ partial "footer.html" . }}