hugo-theme-even/layouts/_default/taxonomy.html

47 lines
1.4 KiB
HTML
Raw Permalink Normal View History

{{- define "title" }}{{ .Title }} · {{ .Site.Title }}{{ end -}}
2017-08-27 14:38:42 +00:00
{{- define "content" }}
{{- $paginator := .Paginate .Data.Pages .Site.Params.archivePaginate -}}
2017-08-27 14:38:42 +00:00
<section id="archive" class="archive">
{{ if not $paginator.HasPrev -}}
{{ if eq .Data.Plural "tags" -}}
2017-08-27 14:38:42 +00:00
<div class="archive-title tag">
<h2 class="archive-name">{{ .Title }}</h2>
</div>
{{- else if eq .Data.Plural "categories" -}}
2017-08-27 14:38:42 +00:00
<div class="archive-title category">
<h2 class="archive-name">{{ .Title }}</h2>
</div>
{{- end }}
{{- end }}
2017-08-27 14:38:42 +00:00
{{ range $paginator.Pages -}}
2017-08-27 14:38:42 +00:00
<div class="archive-post">
<span class="archive-post-time">
{{ .Date.Format (.Site.Params.dateFormatToUse | default "2006-01-02") }}
2017-08-27 14:38:42 +00:00
</span>
<span class="archive-post-title">
<a href="{{ .RelPermalink }}" class="archive-post-link">
2017-08-27 14:38:42 +00:00
{{ .Title }}
</a>
</span>
</div>
{{- end }}
2017-08-27 14:38:42 +00:00
</section>
<!-- pagination -->
<nav class="pagination">
{{ with $paginator.Prev -}}
2017-08-27 14:38:42 +00:00
<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 -}}
2017-08-27 14:38:42 +00:00
<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 }}