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 --- themes/hugo-theme-stack/layouts/_default/list.html | 85 ---------------------- 1 file changed, 85 deletions(-) delete mode 100644 themes/hugo-theme-stack/layouts/_default/list.html (limited to 'themes/hugo-theme-stack/layouts/_default/list.html') diff --git a/themes/hugo-theme-stack/layouts/_default/list.html b/themes/hugo-theme-stack/layouts/_default/list.html deleted file mode 100644 index 9bc618d..0000000 --- a/themes/hugo-theme-stack/layouts/_default/list.html +++ /dev/null @@ -1,85 +0,0 @@ -{{ define "main" }} -
-

- {{ if eq .Parent (.GetPage "/") }} - {{ T "list.section" }} - {{ else }} - {{ .Parent.Title }} - {{ end }} -

- -
-
-

{{ T "list.page" (len .Pages) }}

-

{{ .Title }}

- {{ with .Params.description }} -

{{ . }}

- {{ end }} -
- - {{- $image := partialCached "helper/image" (dict "Context" . "Type" "section") .RelPermalink "section" -}} - {{ if $image.exists }} -
- {{ if $image.resource }} - {{- $Permalink := $image.resource.RelPermalink -}} - {{- $Width := $image.resource.Width -}} - {{- $Height := $image.resource.Height -}} - - {{- if (default true .Page.Site.Params.imageProcessing.cover.enabled) -}} - {{- $thumbnail := $image.resource.Fill "120x120" -}} - {{- $Permalink = $thumbnail.RelPermalink -}} - {{- $Width = $thumbnail.Width -}} - {{- $Height = $thumbnail.Height -}} - {{- end -}} - - - {{ else }} - - {{ end }} -
- {{ end }} -
-
- - {{- $subsections := .Sections -}} - {{- $pages := .Pages | complement $subsections -}} - - {{- if eq (len $pages) 0 -}} - {{/* If there are no normal pages, display subsections in list style, with pagination */}} - {{/* This happens with taxonomies like categories or tags */}} - {{- $pages = $subsections -}} - {{- $subsections = slice -}} - {{- end -}} - - {{- with $subsections -}} - - {{- end -}} - - {{/* List only pages that are not a subsection */}} - {{ $paginator := .Paginate $pages }} -
- {{ range $paginator.Pages }} - {{ partial "article-list/compact" . }} - {{ end }} -
- - {{- partial "pagination.html" . -}} - - {{ partialCached "footer/footer" . }} -{{ end }} - -{{ define "right-sidebar" }} - {{ partial "sidebar/right.html" (dict "Context" . "Scope" "homepage") }} -{{ end }} \ No newline at end of file -- cgit v1.2.3