1234567891011121314151617181920212223242526 |
- {{ define "main" }}
- {{ $truncate := default true .Site.Params.truncate }}
- {{ if .Content }}
- <header>
- <h1 class="blog-post-title">
- <a class="text-dark text-decoration-none" href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
- </h1>
- <hr>
- </header>
- <section class="blog-post">
- {{ .Content }}
- </section>
- {{ end }}
- {{ $paginator := .Paginate (where .Pages "Section" "in" .Site.Params.mainSections) }}
- {{ range $paginator.Pages }}
- {{ .Render "content" }}
- {{ end }}
- {{ partial "paginator" . }}
- {{ end }}
|