index.html 533 B

1234567891011121314151617181920212223242526
  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 (where .Pages "Section" "in" .Site.Params.mainSections) }}
  15. {{ range $paginator.Pages }}
  16. {{ .Render "content" }}
  17. {{ end }}
  18. {{ partial "paginator" . }}
  19. {{ end }}