summaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: 9c4bb4574a0d105981493a9007d672161283efa334bc40eb6cd4cefaf6d72c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" -}}
<main>
  <h1>{{ .Site.Params.indexTitle }}</h1>
  <p>{{ .Site.Params.indexIntro }}</p>
  <h2>Navigation Links</h2>
  <nav>
    <ul class="list">
    {{- range .Site.Menus.main }}
	<li class="list__item">{{ emojify ":link:" }}&nbsp;<a class="link" href="{{ .URL }}" rel="noreferrer">{{ .Name }}</a></li>
    {{- end }}
    </ul>
  </nav>
  <h2>Journal Entries</h2>
  {{ range (where .Site.RegularPages.ByTitle "Section" "entry").ByPublishDate.Reverse -}}
  {{ partial "metadata.html" . -}}
  {{ end -}}
</main>
{{- end }}