summaryrefslogtreecommitdiffstats
path: root/themes/rusticus/layouts/section/list.html
blob: 2bbf85ee6ed02cb9e126a29c978db3a3631506d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{{ partial "header/header.html" . }}

<main class="list">
    <h1>{{ .Title }}</h1>
    <p class="summary">{{ .Summary }}</p>
    <section>
        {{ .Content }}
    </section>

    <ul>
    {{ range .Paginator.Pages }}

      <li class="list-entry">
        <a href="{{.Permalink}}">
          <span class="date">{{.Date.Format (print .Site.Params.dateformat)}}</span>
          <span class="title">{{.Title}}</span>
          <span class="summary">{{.Summary}}</span>
        </a>
      </li>

    {{ end }}
    </ul>

    {{ template "_internal/pagination.html" . }}

</main>
{{ partial "aside.html" . }}

{{ partial "footer/footer.html" . }}