summaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: 38c3c81ddca2217366632810f0a71369f7924a72f0ec12c455e817d816cc8176 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ define "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" . }}
{{ end }}