diff options
author | Nicholas Johnson <nick@nicholasjohnson.ch> | 2023-08-01 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <nick@nicholasjohnson.ch> | 2023-08-01 00:00:00 +0000 |
commit | 178711418fc11bf05321127aa09c8c718d1695963e2b8023d7e8fbe8cbb1ee44 (patch) | |
tree | a59f638d283f28496cdbf8ed654f8334b04e9266adc609c438566b0bb83169b4 /layouts | |
parent | 128a10fd3bae307ab4c092cc78ea6071f18ddd29c8b58c0d414acf3980e2c8d6 (diff) | |
download | hugo-theme-journal-178711418fc11bf05321127aa09c8c718d1695963e2b8023d7e8fbe8cbb1ee44.tar.gz hugo-theme-journal-178711418fc11bf05321127aa09c8c718d1695963e2b8023d7e8fbe8cbb1ee44.zip |
Add multilingual support for index pages
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/index.gmi | 4 | ||||
-rw-r--r-- | layouts/index.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/layouts/index.gmi b/layouts/index.gmi index b97ef74..8ace600 100644 --- a/layouts/index.gmi +++ b/layouts/index.gmi @@ -6,11 +6,11 @@ {{ .Site.Params.indexIntro | safeHTML }} {{- end }} -## Navigation Links +## {{ i18n "navLinks" }} {{ range .Site.Menus.main -}} => {{ .URL }} {{ emojify ":link:" | safeHTML }} {{ .Name | safeHTML }} {{ end }} -## Journal Entries +## {{ i18n "journalEntries" }} {{ $entriesMinusOne := sub (len (where .Site.RegularPages.ByTitle "Section" "entry")) 1 -}} {{ range first $entriesMinusOne (where .Site.RegularPages.ByTitle "Section" "entry").ByPublishDate.Reverse -}} {{ partial "metadata.gmi" . }} diff --git a/layouts/index.html b/layouts/index.html index d29c86a..3161c49 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -6,7 +6,7 @@ {{- if .Site.Params.indexIntro }} <p>{{ .Site.Params.indexIntro }}</p> {{- end }} - <h2>Navigation Links</h2> + <h2>{{ i18n "navLinks" }}</h2> <nav> <ul class="list"> {{- range .Site.Menus.main }} @@ -14,7 +14,7 @@ {{- end }} </ul> </nav> - <h2>Journal Entries</h2> + <h2>{{ i18n "journalEntries" }}</h2> {{ range (where .Site.RegularPages.ByTitle "Section" "entry").ByPublishDate.Reverse -}} {{ partial "metadata.html" . -}} {{ end -}} |