aboutsummaryrefslogtreecommitdiff
path: root/layouts/index.html
blob: 1a164972038b9f4ed63464cf8f4d564306139ceb (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
{{ define "content" }}
  <section id="posts" class="posts">
    {{/* (index .Site.Paginate) */}}
    {{ $paginator := .Paginate (where .Data.Pages "Type" "post") }}
    {{ range $paginator.Pages }}
      {{ .Render "summary" }}
    {{ end }}
  </section>
  <!-- pagination -->
  <nav class="pagination">
    {{- $lang := .Site.Data.even.default -}}
    {{ with $paginator.Prev }}
      <a class="prev" href="{{ .URL }}">
        <i class="iconfont icon-left"></i>
        <span class="prev-text">{{ $lang.posts.prev }}</span>
      </a>
    {{- end }}
    {{ with $paginator.Next }}
      <a class="next" href="{{ .URL }}">
        <span class="next-text">{{ $lang.posts.next }}</span>
        <i class="iconfont icon-right"></i>
      </a>
    {{- end }}
  </nav>
{{ end }}