aboutsummaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorNicholas Johnson <nick@nicholasjohnson.ch>2023-08-25 00:00:00 +0000
committerNicholas Johnson <nick@nicholasjohnson.ch>2023-08-25 00:00:00 +0000
commit5d08e8402299fc3ef75718b90a235f455ddfa026f404217d6f89e8afaf7ff624 (patch)
treed1312b8010deb06198b436de44f656bc8d013a8f3f9f99282ab9a8021a774a76 /layouts
parent6e9cc2a184805f6b3de073e4e96986c1f7d6e427c7baae9220313fde34b7dc0f (diff)
Correctly handle absent journal entries
Diffstat (limited to 'layouts')
-rw-r--r--layouts/index.gmi6
-rw-r--r--layouts/index.html2
2 files changed, 7 insertions, 1 deletions
diff --git a/layouts/index.gmi b/layouts/index.gmi
index a15154c..05250fd 100644
--- a/layouts/index.gmi
+++ b/layouts/index.gmi
@@ -11,7 +11,9 @@
=> {{ .URL }} {{ emojify ":link:" | safeHTML }} {{ .Name | safeHTML -}}
{{ end -}}
-{{ end }}
+{{ end -}}
+
+{{ if .Site.RegularPages }}
## {{ i18n "journalEntries" -}}
@@ -20,4 +22,6 @@
{{ partial "metadata.gmi" . -}}
{{ end -}}
+{{ end -}}
+
{{ end }} \ No newline at end of file
diff --git a/layouts/index.html b/layouts/index.html
index f2e757c..6f231df 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -12,9 +12,11 @@
</ul>
</nav>
{{ end -}}
+ {{ if .Site.RegularPages -}}
<h2>{{ i18n "journalEntries" }}</h2>
{{ range (where .Site.RegularPages.ByTitle "Section" "entry").ByPublishDate.Reverse -}}
{{ partial "metadata.html" . }}
{{ end -}}
+ {{ end -}}
</main>
{{- end }} \ No newline at end of file