aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.gmi
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.gmi')
-rw-r--r--layouts/index.gmi17
1 files changed, 8 insertions, 9 deletions
diff --git a/layouts/index.gmi b/layouts/index.gmi
index e629fe7..ab4fdb4 100644
--- a/layouts/index.gmi
+++ b/layouts/index.gmi
@@ -7,12 +7,11 @@
=> {{ .URL }} {{ emojify ":link:" | safeHTML }} {{ .Name | safeHTML }}
{{ end }}
## Journal Entries
-{{ $entriesMinusOne := sub (len (where .Site.RegularPages.ByTitle "Section" "entry").ByPublishDate.Reverse) 1 }}
-{{- range first $entriesMinusOne (where .Site.RegularPages.ByTitle "Section" "entry").ByPublishDate.Reverse }}
-{{- partial "metadata.gmi" . }}
-{{ end }}{{- if gt (len .Data.Pages) 1 }}
-
-{{- range last 1 (where .Site.RegularPages.ByTitle "Section" "entry").ByPublishDate.Reverse }}
-{{- partial "metadata.gmi" . }}{{ end }}
-{{- end }}
-{{- end }}
+{{ $entriesMinusOne := sub (len (where .Site.RegularPages.ByTitle "Section" "entry")) 1 -}}
+{{ range first $entriesMinusOne (where .Site.RegularPages.ByTitle "Section" "entry").ByPublishDate.Reverse -}}
+{{ partial "metadata.gmi" . }}
+{{ end -}}
+{{ range last 1 (where .Site.RegularPages.ByTitle "Section" "entry").ByPublishDate.Reverse -}}
+{{ partial "metadata.gmi" . -}}
+{{ end -}}
+{{ end }}