list.html 576 B

123456789101112131415161718192021222324252627282930
  1. {{ define "main" }}
  2. {{ $truncate := default true .Site.Params.truncate }}
  3. {{ if .Content }}
  4. <header>
  5. <h1 class="blog-post-title">
  6. <a class="text-dark text-decoration-none" href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
  7. </h1>
  8. <hr>
  9. </header>
  10. <section class="blog-post">
  11. {{ .Content }}
  12. </section>
  13. {{ end }}
  14. {{ $paginator := .Paginate .Pages }}
  15. {{ range $paginator.Pages }}
  16. {{ if $truncate }}
  17. {{ .Render "summary" }}
  18. {{ else }}
  19. {{ .Render "content" }}
  20. {{ end }}
  21. {{ end }}
  22. {{ partial "paginator" . }}
  23. {{ end }}