hugo-theme-even/layouts/index.html

24 lines
768 B
HTML
Raw Normal View History

2017-08-27 14:38:42 +00:00
{{ define "content" }}
<section id="posts" class="posts">
{{/* (index .Site.Paginate) */}}
{{ $paginator := .Paginate (where (where .Data.Pages "Type" "post") ".Params.hiddenfromhomepage" "!=" true) }}
2017-08-27 14:38:42 +00:00
{{ range $paginator.Pages }}
{{ .Render "summary" }}
{{ end }}
</section>
<!-- pagination -->
<nav class="pagination">
{{ with $paginator.Prev }}
<a class="prev" href="{{ .URL }}">
<i class="iconfont icon-left"></i>
2018-01-31 14:07:50 +00:00
<span class="prev-text">{{ T "prevPage" }}</span>
2017-08-27 14:38:42 +00:00
</a>
{{- end }}
{{ with $paginator.Next }}
<a class="next" href="{{ .URL }}">
2018-01-31 14:07:50 +00:00
<span class="next-text">{{ T "nextPage" }}</span>
2017-08-27 14:38:42 +00:00
<i class="iconfont icon-right"></i>
</a>
{{- end }}
</nav>
{{ end }}