summaryrefslogtreecommitdiff
path: root/layouts/_default/list.html
blob: a33b3affec51f73ba807b4907e618b8e637ba5be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ partial "header.html" . }}

  <main role="main">
    <h1 class="list-title">{{ .Title }}</h1>
    {{ range .Data.Pages }}
    <article itemscope itemtype="http://schema.org/Blog">
      <h2 class="entry-title" itemprop="headline">
        <a href="{{ .RelPermalink }}">{{ .Title }}</a>
      </h2>
      <span class="entry-meta">
        <time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time>
      </span>
      <div>
        {{ .Summary }}
      </div>
    </article>
    {{ end }}
  </main>

{{ partial "footer.html" . }}