Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list.html « _default « layouts - github.com/wayjam/hugo-theme-mixedpaper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28af746a659419f4adfa1d6f86f720a80fb55921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}
<section id="main">
  <div class="container">
    <section id="archives" class="post_list content">
      <ul class="listing">
        {{ range (.Paginator (.Site.Params.listPaginate | default 20)).Pages }}
        <li class="line_item item">
          <a href="{{ .Permalink }}" title="{{ .Title }}">
            <span>{{ .Title }}</span>
            <span class="date">{{ .PublishDate.Format "2006-01-02" }}</span>
          </a>
        </li>
        {{ end }}
      </ul>
    </section>
    {{ partial "pagination.html" . }}
  </div>
</section>
{{ end }}