From d8b5023d7269fd67374cf65a1372e374b41964e0 Mon Sep 17 00:00:00 2001
From: Alexander Neonxp Kiryukhin
Date: Sat, 14 Feb 2026 13:06:23 +0300
Subject: New post, didaceted theme
---
themes/neonxp/layouts/_partials/footer.html | 1 -
themes/neonxp/layouts/_partials/head.html | 12 -------
themes/neonxp/layouts/_partials/head/css.html | 27 ---------------
themes/neonxp/layouts/_partials/head/js.html | 16 ---------
themes/neonxp/layouts/_partials/header.html | 2 --
themes/neonxp/layouts/_partials/menu.html | 50 ---------------------------
themes/neonxp/layouts/_partials/terms.html | 29 ----------------
7 files changed, 137 deletions(-)
delete mode 100644 themes/neonxp/layouts/_partials/footer.html
delete mode 100644 themes/neonxp/layouts/_partials/head.html
delete mode 100644 themes/neonxp/layouts/_partials/head/css.html
delete mode 100644 themes/neonxp/layouts/_partials/head/js.html
delete mode 100644 themes/neonxp/layouts/_partials/header.html
delete mode 100644 themes/neonxp/layouts/_partials/menu.html
delete mode 100644 themes/neonxp/layouts/_partials/terms.html
(limited to 'themes/neonxp/layouts/_partials')
diff --git a/themes/neonxp/layouts/_partials/footer.html b/themes/neonxp/layouts/_partials/footer.html
deleted file mode 100644
index 2c30eaa..0000000
--- a/themes/neonxp/layouts/_partials/footer.html
+++ /dev/null
@@ -1 +0,0 @@
-
© 2007 — {{ now.Year }} Александр NeonXP Кирюхин. i@neonxp.ru
\ No newline at end of file
diff --git a/themes/neonxp/layouts/_partials/head.html b/themes/neonxp/layouts/_partials/head.html
deleted file mode 100644
index 7826e2a..0000000
--- a/themes/neonxp/layouts/_partials/head.html
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-{{ partial "opengraph.html" . }}
-
- {{ if .IsHome }}
- {{ site.Title }}
- {{ else }}
- {{ printf "%s | %s" .Title site.Title }}
- {{ end }}
-
-{{ partialCached "head/css.html" . }} {{ partialCached "head/js.html" . }}
\ No newline at end of file
diff --git a/themes/neonxp/layouts/_partials/head/css.html b/themes/neonxp/layouts/_partials/head/css.html
deleted file mode 100644
index 9324758..0000000
--- a/themes/neonxp/layouts/_partials/head/css.html
+++ /dev/null
@@ -1,27 +0,0 @@
-{{- with resources.Get "css/reset.css" }}
-{{- if hugo.IsDevelopment }}
-
-{{- else }}
-{{- with . | minify | fingerprint }}
-
-{{- end }}
-{{- end }}
-{{- end }}
-{{- with resources.Get "css/paper.css" }}
-{{- if hugo.IsDevelopment }}
-
-{{- else }}
-{{- with . | minify | fingerprint }}
-
-{{- end }}
-{{- end }}
-{{- end }}
-{{- with resources.Get "css/main.css" }}
-{{- if hugo.IsDevelopment }}
-
-{{- else }}
-{{- with . | minify | fingerprint }}
-
-{{- end }}
-{{- end }}
-{{- end }}
\ No newline at end of file
diff --git a/themes/neonxp/layouts/_partials/head/js.html b/themes/neonxp/layouts/_partials/head/js.html
deleted file mode 100644
index 1b7c18e..0000000
--- a/themes/neonxp/layouts/_partials/head/js.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/themes/neonxp/layouts/_partials/header.html b/themes/neonxp/layouts/_partials/header.html
deleted file mode 100644
index 7980a00..0000000
--- a/themes/neonxp/layouts/_partials/header.html
+++ /dev/null
@@ -1,2 +0,0 @@
-{{ site.Title }}
-{{ partial "menu.html" (dict "menuID" "main" "page" .) }}
diff --git a/themes/neonxp/layouts/_partials/menu.html b/themes/neonxp/layouts/_partials/menu.html
deleted file mode 100644
index ebad53f..0000000
--- a/themes/neonxp/layouts/_partials/menu.html
+++ /dev/null
@@ -1,50 +0,0 @@
-{{- /*
-Renders a menu for the given menu ID.
-
-@context {page} page The current page.
-@context {string} menuID The menu ID.
-
-@example: {{ partial "menu.html" (dict "menuID" "main" "page" .) }}
-*/}}
-
-{{- $page := .page }}
-{{- $menuID := .menuID }}
-
-{{- with index site.Menus $menuID }}
-
-{{- end }}
-
-{{- define "_partials/inline/menu/walk.html" }}
-{{- $page := .page }}
-{{- range .menuEntries }}
-{{- $attrs := dict "href" .URL }}
-{{- if $page.IsMenuCurrent .Menu . }}
-{{- $attrs = merge $attrs (dict "class" "active" "aria-current" "page") }}
-{{- else if $page.HasMenuCurrent .Menu .}}
-{{- $attrs = merge $attrs (dict "class" "ancestor" "aria-current" "true") }}
-{{- end }}
-{{- $name := .Name }}
-{{- with .Identifier }}
-{{- with T . }}
-{{- $name = . }}
-{{- end }}
-{{- end }}
-
-
- {{if .Pre}}
- {{.Pre}}
- {{end}}
- {{ $name }}
-
- {{- with .Children }}
-
- {{- partial "inline/menu/walk.html" (dict "page" $page "menuEntries" .) }}
-
- {{- end }}
-
-{{- end }}
-{{- end }}
\ No newline at end of file
diff --git a/themes/neonxp/layouts/_partials/terms.html b/themes/neonxp/layouts/_partials/terms.html
deleted file mode 100644
index b666922..0000000
--- a/themes/neonxp/layouts/_partials/terms.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{{- $page := .page }}
-
-{{- with $page.GetTerms "categories" }}
-{{- if . }}
-{{- $label := (index . 0).Parent.LinkTitle }}
-
-{{- end }}
-{{- end }}
-
-{{- with $page.GetTerms "tags" }}
-{{- if . }}
-{{- $label := (index . 0).Parent.LinkTitle }}
-
-{{- end }}
-{{- end }}
\ No newline at end of file
--
cgit v1.2.3