aboutsummaryrefslogtreecommitdiff
path: root/themes/flamingo/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/flamingo/layouts/index.html')
-rw-r--r--themes/flamingo/layouts/index.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/flamingo/layouts/index.html b/themes/flamingo/layouts/index.html
new file mode 100644
index 0000000..523eb38
--- /dev/null
+++ b/themes/flamingo/layouts/index.html
@@ -0,0 +1,14 @@
+{{ define "main" }}
+<!-- Copy of list.html -->
+<main>
+ {{ partial "post-description.html" }}
+ <div class="blog-list">
+ {{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }}
+ {{ range .Paginator.Pages }}
+ {{ .Render "summary" }}
+ {{ end }}
+ </div>
+ <!-- {{ partial "pagination.html" . }} -->
+</main>
+<!-- {{ partial "sidebar.html" . }} -->
+{{ end }}