post.html 687 B

12345678910111213141516171819202122232425262728
  1. {{ partial "header.html" . }}
  2. {{ partial "navbar.html" . }}
  3. {{ partial "header_image.html" . }}
  4. <div class="universal-wrapper">
  5. <h1 class="pt-3">{{ .Title | default (i18n "posts") }}</h1>
  6. {{ with .Content }}
  7. <div class="article-style" itemprop="articleBody">{{ . }}</div>
  8. {{ end }}
  9. {{ $paginator := .Paginate .Data.Pages }}
  10. {{ range $paginator.Pages }}
  11. {{ $params := dict "post" . }}
  12. {{ if eq $.Params.list_format 0 }}
  13. {{ partial "post_li_simple" $params }}
  14. {{ else }}
  15. {{ partial "post_li_detailed" $params }}
  16. {{ end }}
  17. {{ end }}
  18. {{ partial "pagination" . }}
  19. </div>
  20. {{ partial "footer_container.html" . }}
  21. {{ partial "footer.html" . }}