summaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: 02bf301e61ea5d820b834bbbcdf68c9e75deeb9f49e0c8a5cde24e3669b81efc (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 }}