LoveIt/layouts/index.html

16 lines
531 B
HTML
Raw Normal View History

2019-08-18 19:36:52 +02:00
{{ define "content" -}}
{{ if eq .Site.Params.home_mode "post" -}}
2019-08-11 19:36:19 +02:00
<div class="post-warp">
2019-08-18 19:36:52 +02:00
{{- partial "home/profile.html" . -}}
2019-08-11 19:36:19 +02:00
2019-08-18 19:36:52 +02:00
{{- $paginator := .Paginate (where (where .Data.Pages "Type" "posts") ".Params.show_in_homepage" "!=" false) }}
{{ range $paginator.Pages -}}
{{ .Render "summary" -}}
{{ end -}}
2019-08-11 19:36:19 +02:00
{{ partial "paginator.html" . }}
</div>
2019-08-18 19:36:52 +02:00
{{- else -}}
{{ partial "home/profile.html" . -}}
{{ end -}}
{{ end }}