aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: af4a15a1dee9f9b08726946858d6b417d5119e92fbf3010bc6698e8c917f8c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "main" }}
<main>
<h1>{{ .Site.Params.indexTitle }}</h1>
<p>{{ .Site.Params.indexIntro }}</p>
<h2>Navigation Links</h2>
<nav>
  <p>
  {{- range .Site.Menus.main }}
  <a href="{{ .URL }}" rel="noreferrer">{{ .Name }}</a><br>
  {{- end }}
  </p>
</nav>
<h2>Journal Entries</h2>
{{ partial "metadata.html" . }}
</main>
{{ end }}