Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/chipsenkbeil/grid-side.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/_default/list.html')
-rw-r--r--layouts/partials/_default/list.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/layouts/partials/_default/list.html b/layouts/partials/_default/list.html
new file mode 100644
index 0000000..f65df9a
--- /dev/null
+++ b/layouts/partials/_default/list.html
@@ -0,0 +1,24 @@
+{{ partial "core/html-start.html" . }}
+{{ partial "core/head.html" . }}
+
+<body>
+ {{ partial "core/main-menu.html" . }}
+
+ <section class="main-content">
+ <div class="masonry-flex-container">
+ {{ if .IsNode }}
+ {{ range .Paginator.Pages }}
+ <div class="flex-item">
+ {{ partial "post/page-item.html" . }}
+ </div>
+ {{ end }}
+ {{ end }}
+ </div>
+ {{ partial "extra/pagination.html" . }}
+ </section>
+
+ {{ partial "core/js.html" . }}
+</body>
+
+{{ partial "core/html-end.html" . }}
+