From 239d68f94c6250276850fbe95eaa6cdd5c38fb26 Mon Sep 17 00:00:00 2001
From: Alexander Neonxp Kiryukhin <i@neonxp.ru>
Date: Sat, 16 Nov 2024 19:32:18 +0300
Subject: Своя тема, полностью всё переделал
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 themes/neonxp/layouts/index.html | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 themes/neonxp/layouts/index.html

(limited to 'themes/neonxp/layouts/index.html')

diff --git a/themes/neonxp/layouts/index.html b/themes/neonxp/layouts/index.html
new file mode 100644
index 0000000..f92bc7f
--- /dev/null
+++ b/themes/neonxp/layouts/index.html
@@ -0,0 +1,30 @@
+{{ define "main" }}
+<div class="single-page">
+    <div class="sidebar">
+        <article class="toc">
+            <header>Навигатор</header>
+            {{ partial "menu.html" (dict "menuID" "sections" "page" .) }}
+        </article>
+    </div>
+    <div class="h-entry">
+        <article>
+            <header class="p-name">
+                {{ .Title }}
+            </header>
+            <div class="p-summary">
+                {{ .Summary }}
+              </div>
+              <div class="e-content">
+                {{ .Content }}
+              </div>
+        </article>
+        <h1>Блог</h1>
+        {{ $pages := where site.RegularPages "Type" "posts" }}
+        {{ $paginator := .Paginate $pages 7 }}
+        {{ range $paginator.Pages }}
+        {{ partial "list.html" . }}
+        {{ end }}
+        <nav>{{ partial "pagination.html" . }}</nav>
+    </div>
+</div>
+{{ end }}
-- 
cgit v1.2.3