aboutsummaryrefslogtreecommitdiff
path: root/layouts/updates/list.html
blob: 125ba79b1dd510600e7be831edbc33f48bc57e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ define "main" }}
  <article lang="{{ default "en" .Params.lang }}">
    <header class="document-header">
      <h1>{{ .Title }}</h1>
    </header>
    {{ .Content }}
    {{- $items := partial "updated-items.html" . -}}
    <section class="updates-list" aria-label="All updates">
      <ol class="document-list">
        {{- range $items }}
          <li>
            <time datetime="{{ .sortDate }}">{{ .sortDate }}</time>
            <span class="document-kind">[{{ .kind }}]</span>
            <a href="{{ .page.RelPermalink }}" lang="{{ .page.Params.lang }}">{{ .page.LinkTitle }}</a>
          </li>
        {{- end }}
      </ol>
    </section>
  </article>
{{ end }}