blob: b3dcdd05f48851cfcac73b992e233f276983a4d7c450e16b998dcafb3b7ce2f4 (
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 class="main">
<h1>{{ .Site.Params.indexTitle }}</h1>
<p>{{ .Site.Params.indexIntro }}</p>
{{ if .Site.Menus.main }}
<h2>{{ i18n "navLinks" }}</h2>
<nav>
<ul class="list">
{{ range .Site.Menus.main }}
<li class="list__item">{{ emojify ":link:" }} <a class="link link--internal" href="{{ .URL }}" rel="noreferrer">{{ .Name }}</a></li>
{{ end }}
</ul>
</nav>
{{ end }}
{{ with (where .Site.RegularPages "Section" "entry").ByPublishDate.Reverse }}
<h2>{{ i18n "journalEntries" }}</h2>
{{ range . }}
{{ partial "metadata.html" . }}
{{ end }}
{{ end }}
</main>
{{ end }}
|