LoveIt/layouts/index.html

28 lines
971 B
HTML
Raw Normal View History

2020-01-31 11:46:28 +01:00
{{- define "content" -}}
{{- /* Home mode [post] */ -}}
2020-01-31 11:46:28 +01:00
{{- if eq .Site.Params.home_mode "post" -}}
<div class="page home">
{{- /* 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" . -}}
2019-08-11 19:36:19 +02:00
</div>
{{- /* Home mode [other] */ -}}
2019-08-18 19:36:52 +02:00
{{- else -}}
{{- /* Profile */ -}}
2020-01-31 11:46:28 +01:00
{{- partial "home/profile.html" . -}}
{{- end -}}
2020-02-06 17:10:00 +01:00
{{- end -}}