aboutsummaryrefslogtreecommitdiff
path: root/themes/neonxp/layouts/index.html
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-11-18 23:18:18 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-11-18 23:18:18 +0300
commit74b65dd83f7c66d1f67f961b1fee65400b1fc334 (patch)
treedd9d5f0db2dbc733bcbbb04f98f0d18abf40031e /themes/neonxp/layouts/index.html
parent1c1ae0094244868c63bd875c0cbfa50ced37de8d (diff)
Фикс темы под мобильные устройства
Diffstat (limited to 'themes/neonxp/layouts/index.html')
-rw-r--r--themes/neonxp/layouts/index.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/themes/neonxp/layouts/index.html b/themes/neonxp/layouts/index.html
deleted file mode 100644
index f92bc7f..0000000
--- a/themes/neonxp/layouts/index.html
+++ /dev/null
@@ -1,30 +0,0 @@
-{{ 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 }}