LoveIt/layouts/index.html

28 lines
991 B
HTML
Raw Normal View History

2020-01-31 11:46:28 +01:00
{{- define "content" -}}
2020-02-13 18:30:33 +01:00
<div class="page home">
{{- /* Home mode [post] */ -}}
{{- if eq .Site.Params.home_mode "post" -}}
{{- /* Profile */ -}}
2019-08-18 19:36:52 +02:00
{{- partial "home/profile.html" . -}}
2019-08-11 19:36:19 +02:00
{{- /* Paginate */ -}}
2020-01-31 11:46:28 +01:00
{{- $paginator := where .Site.RegularPages "Type" "posts" -}}
{{- $paginator = where $paginator "Params.show_in_homepage" "!=" false -}}
{{- with .Site.Params.home_paginate -}}
{{- $paginator = $.Paginate $paginator . -}}
{{- else -}}
{{- $paginator = $.Paginate $paginator -}}
{{- end -}}
{{- range $paginator.Pages -}}
{{- .Render "summary" -}}
{{- end -}}
{{- partial "paginator.html" . -}}
2020-02-13 18:30:33 +01:00
{{- /* Home mode [other] */ -}}
{{- else -}}
{{- /* Profile */ -}}
{{- partial "home/profile.html" . -}}
{{- end -}}
</div>
2020-02-06 17:10:00 +01:00
{{- end -}}