aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.gmi
blob: ec9a9599894dcacc77208515fe98a3c9fb4703e5c260560e3b82995373aea59a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{ define "main" -}}
# {{ .Site.Params.indexTitle }}

{{ .Site.Params.indexIntro }}

{{- if .Site.Menus.main }}


## {{ i18n "navLinks" }}
{{ range .Site.Menus.main }}
=> {{ .URL }} {{ emojify ":link:" }} {{ .Name -}}
{{ end -}}

{{ end -}}

{{ if .Site.RegularPages }}


## {{ i18n "journalEntries" -}}
{{ range (where .Site.RegularPages.ByTitle "Section" "entry").ByPublishDate.Reverse }}

{{ partial "metadata.gmi" . -}}
{{ end -}}

{{ end -}}

{{ end }}