1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2025-05-10 22:46:02 +02:00

Add option to control post truncation.

This commit is contained in:
Mike Lococo
2017-04-02 23:54:42 -04:00
committed by Alan Orth
parent e7749e9bde
commit 2e5eef29a6
4 changed files with 20 additions and 0 deletions

View File

@ -29,9 +29,14 @@
{{ define "main" }}
{{ $truncate := default true .Site.Params.truncate }}
{{ $paginator := .Paginate (where .Data.Pages "Type" "post") }}
{{ range $paginator.Pages }}
{{ if $truncate }}
{{ .Render "summary" }}
{{ else }}
{{ .Render "content" }}
{{ end }}
{{ end }}
{{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }}