summaryrefslogtreecommitdiff
path: root/themes/LoveIt/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/LoveIt/layouts/index.html')
-rw-r--r--themes/LoveIt/layouts/index.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/themes/LoveIt/layouts/index.html b/themes/LoveIt/layouts/index.html
new file mode 100644
index 0000000..7cccb54
--- /dev/null
+++ b/themes/LoveIt/layouts/index.html
@@ -0,0 +1,41 @@
+{{- define "content" -}}
+ {{- $params := .Scratch.Get "params" -}}
+ {{- $profile := .Site.Params.home.profile -}}
+ {{- $posts := .Site.Params.home.posts -}}
+
+ <div class="page home"{{ if ne $posts.enable false }} data-home="posts"{{ end }}>
+ {{- /* Profile */ -}}
+ {{- if ne $profile.enable false -}}
+ {{- partial "home/profile.html" . -}}
+ {{- end -}}
+
+ {{- /* Content */ -}}
+ {{- if .Content -}}
+ <div class="single">
+ <div class="content" id="content">
+ {{- dict "Content" .Content "Ruby" $params.ruby "Fraction" $params.fraction "Fontawesome" $params.fontawesome | partial "function/content.html" | safeHTML -}}
+ </div>
+ </div>
+ {{- end -}}
+
+ {{- /* Posts */ -}}
+ {{- if ne $posts.enable false | and .Site.RegularPages -}}
+ {{- /* Paginate */ -}}
+ {{- $pages := where .Site.RegularPages "Type" "posts" -}}
+ {{- if .Site.Params.page.hiddenFromHomePage -}}
+ {{- $pages = where $pages "Params.hiddenfromhomepage" false -}}
+ {{- else -}}
+ {{- $pages = where $pages "Params.hiddenfromhomepage" "!=" true -}}
+ {{- end -}}
+ {{- with $posts.paginate | default .Site.Params.paginate -}}
+ {{- $pages = $.Paginate $pages . -}}
+ {{- else -}}
+ {{- $pages = .Paginate $pages -}}
+ {{- end -}}
+ {{- range $pages.Pages -}}
+ {{- .Render "summary" -}}
+ {{- end -}}
+ {{- partial "paginator.html" . -}}
+ {{- end -}}
+ </div>
+{{- end -}}