From 239d68f94c6250276850fbe95eaa6cdd5c38fb26 Mon Sep 17 00:00:00 2001 From: Alexander Neonxp Kiryukhin 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 --- .../layouts/partials/data/description.html | 17 ---------- .../layouts/partials/data/title.html | 38 ---------------------- 2 files changed, 55 deletions(-) delete mode 100644 themes/hugo-theme-stack/layouts/partials/data/description.html delete mode 100644 themes/hugo-theme-stack/layouts/partials/data/title.html (limited to 'themes/hugo-theme-stack/layouts/partials/data') diff --git a/themes/hugo-theme-stack/layouts/partials/data/description.html b/themes/hugo-theme-stack/layouts/partials/data/description.html deleted file mode 100644 index 7f6cc32..0000000 --- a/themes/hugo-theme-stack/layouts/partials/data/description.html +++ /dev/null @@ -1,17 +0,0 @@ - -{{ $description := .Site.Params.sidebar.subtitle }} - - -{{ if .Site.Params.description }} - {{ $description = .Site.Params.description }} -{{ end }} - -{{ if .Description }} - - {{ $description = .Description }} -{{ else if .IsPage }} - - {{ $description = .Summary }} -{{ end }} - -{{ return (replaceRE "\n" " " $description | plainify) }} \ No newline at end of file diff --git a/themes/hugo-theme-stack/layouts/partials/data/title.html b/themes/hugo-theme-stack/layouts/partials/data/title.html deleted file mode 100644 index 85a7bc7..0000000 --- a/themes/hugo-theme-stack/layouts/partials/data/title.html +++ /dev/null @@ -1,38 +0,0 @@ -{{- $title := .Title -}} -{{- $siteTitle := .Site.Title -}} - -{{- if .IsHome -}} - - - - {{ $pages := where .Site.RegularPages "Section" "in" .Site.Params.mainSections }} - {{ $notHidden := where .Site.RegularPages "Params.hidden" "!=" true }} - {{ $filtered := ($pages | intersect $notHidden) }} - {{ $pag := .Paginate ($filtered) }} - - {{ if .Paginator.HasPrev }} - - {{ $title = printf "%s - %s" .Paginator $siteTitle }} - {{ else }} - {{ $title = $siteTitle}} - {{ end }} -{{- else if eq .Kind "term" -}} - - - - {{ $notHidden := where .Pages "Params.hidden" "!=" true }} - {{ $pag := .Paginate ($notHidden) }} - - - {{ $title = slice (title .Data.Singular) ": " $title }} - - {{ if .Paginator.HasPrev }} - - {{ $title = $title | append " - " .Paginator }} - {{ end }} - - {{ $title = $title | append " - " $siteTitle }} - {{ $title = delimit $title "" }} -{{- end -}} - -{{ return $title }} \ No newline at end of file -- cgit v1.2.3