blob: e42e751194959ad91a72387d5fd119a40054c1cb4be39992d413017d5901b986 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{{ define "main" -}}
<main>
{{- if .Site.Params.indexTitle }}
<h1>{{ .Site.Params.indexTitle }}</h1>
{{- end }}
{{- if .Site.Params.indexIntro }}
<p>{{ .Site.Params.indexIntro }}</p>
{{- end }}
<h2>{{ i18n "navLinks" }}</h2>
<nav>
<ul class="list">
{{- range .Site.Menus.main }}
<li class="list__item">{{ emojify ":link:" | safeHTML }} <a class="link" href="{{ .URL }}" rel="noreferrer">{{ .Name }}</a></li>
{{- end }}
</ul>
</nav>
<h2>{{ i18n "journalEntries" }}</h2>
{{ range (where .Site.RegularPages.ByTitle "Section" "entry").ByPublishDate.Reverse -}}
{{ partial "metadata.html" . -}}
{{ end -}}
</main>
{{- end }}
|