diff options
author | Alan Pearce | 2020-11-14 21:17:02 +0100 |
---|---|---|
committer | Alan Pearce | 2020-11-14 21:52:50 +0100 |
commit | 5de7de4e64cb20183ebfe86e16578f4abd62a23e (patch) | |
tree | d3e24ee322d24c03a5e6563ace11c1c588881368 /themes/xmin/layouts/_default/list.html | |
parent | d996657be5efda94f4a934d5d78c407ba47bf76c (diff) | |
download | website-5de7de4e64cb20183ebfe86e16578f4abd62a23e.tar.lz website-5de7de4e64cb20183ebfe86e16578f4abd62a23e.tar.zst website-5de7de4e64cb20183ebfe86e16578f4abd62a23e.zip |
Port theme to zola template
Diffstat (limited to 'themes/xmin/layouts/_default/list.html')
-rw-r--r-- | themes/xmin/layouts/_default/list.html | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/themes/xmin/layouts/_default/list.html b/themes/xmin/layouts/_default/list.html deleted file mode 100644 index 6780bba..0000000 --- a/themes/xmin/layouts/_default/list.html +++ /dev/null @@ -1,23 +0,0 @@ -{{ define "main" }} - -{{ if not .IsHome }} -<h1>{{ .Title | markdownify }}</h1> -{{ else }} -<h1>{{ .Site.Title | markdownify }}</h1> -{{ end }} - - -{{ .Content }} - -<ul> - {{ $pages := .Pages }} - {{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }} - {{ range (where $pages "Section" "!=" "") }} - <li class="h-entry"> - <span class="date dt-published">{{ .Date.Format "2006-01-02" }}</span> - <a class="u-url p-name" href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a> - </li> - {{ end }} -</ul> - -{{- end }} |