summaryrefslogtreecommitdiff
path: root/themes/hugo-xmin/layouts/_default/list.html
diff options
context:
space:
mode:
authorHunter Kvalevog <hunter@kvog.sh>2026-06-09 17:59:08 -0500
committerHunter Kvalevog <hunter@kvog.sh>2026-06-09 17:59:08 -0500
commit927c9cf689201b93a26e62fe0a872c92b5a33dd3 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /themes/hugo-xmin/layouts/_default/list.html
parent0e78e35f80a903686dcac5ae81a26d547a7ab7b7 (diff)
Diffstat (limited to 'themes/hugo-xmin/layouts/_default/list.html')
-rw-r--r--themes/hugo-xmin/layouts/_default/list.html16
1 files changed, 0 insertions, 16 deletions
diff --git a/themes/hugo-xmin/layouts/_default/list.html b/themes/hugo-xmin/layouts/_default/list.html
deleted file mode 100644
index 6940251..0000000
--- a/themes/hugo-xmin/layouts/_default/list.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{{ partial "header.html" . }}
-
-{{ .Content }}
-
-<ul>
- {{ $pages := .Pages }}
- {{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }}
- {{ range (where $pages "Section" "!=" "") }}
- <li>
- <span class="date">{{ .Date.Format "01/02/2006" }}</span>
- <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
- </li>
- {{ end }}
-</ul>
-
-{{ partial "footer.html" . }}