aboutsummaryrefslogtreecommitdiff
path: root/layouts/notes/single.html
blob: 35f179d97baf9b983bbf61865ee6e223e5550cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}
  <article lang="{{ .Params.lang }}">
    <header class="document-header">
      <p class="document-path">{{ .RelPermalink }}</p>
      <h1>{{ .Title }}</h1>
      {{- with .Params.series }}{{ partial "series-nav.html" (dict "page" $ "mode" "position") }}{{ end }}
      <dl class="document-meta">
        <div><dt>created</dt><dd><time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time></dd></div>
        <div><dt>updated</dt><dd><time datetime="{{ .Lastmod.Format "2006-01-02" }}">{{ .Lastmod.Format "2006-01-02" }}</time></dd></div>
        <div><dt>license</dt><dd>{{ .Params.license }}</dd></div>
      </dl>
      {{ partial "document-view.html" . }}
    </header>
    {{ partial "toc.html" . }}
    {{ .Content }}
    {{- with .Params.series }}{{ partial "series-nav.html" (dict "page" $ "mode" "navigation") }}{{ end }}
  </article>
{{ end }}