Commit basic working example

This commit is contained in:
2020-12-07 14:13:09 +02:00
parent 823c0190bb
commit f670020674
22 changed files with 536 additions and 180 deletions

View File

@ -0,0 +1,18 @@
{{ define "main" }}
{{ $truncate := default true .Site.Params.truncate }}
{{ range .Paginator.Pages }}
{{ if $truncate }}
{{ .Render "summary" }}
{{ else }}
{{ .Render "content" }}
{{ end }}
{{ end }}
{{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }}
{{ partial "pagination.html" . }}
{{ end }}
{{ end }}
{{- /* vim: set ts=2 sw=2 et: */}}