aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/section.html
diff options
context:
space:
mode:
authorolOwOlo <26087907+olOwOlo@users.noreply.github.com>2017-08-27 22:38:42 +0800
committerolOwOlo <26087907+olOwOlo@users.noreply.github.com>2017-08-27 22:38:42 +0800
commit3c6cb7f29631dfcdd954e7cbd5d2370efe7eb827 (patch)
treed374e090981dda28452dbd13400e377b9cc06277 /layouts/_default/section.html
🎉 first commit
Diffstat (limited to 'layouts/_default/section.html')
-rw-r--r--layouts/_default/section.html56
1 files changed, 56 insertions, 0 deletions
diff --git a/layouts/_default/section.html b/layouts/_default/section.html
new file mode 100644
index 0000000..029226c
--- /dev/null
+++ b/layouts/_default/section.html
@@ -0,0 +1,56 @@
+{{ define "title" }}{{ .Site.Data.even.default.archive }} - {{ .Site.Title }}{{ end }}
+
+{{ define "content"}}
+{{- $lang := .Site.Data.even.default }}
+{{- $paginator := .Paginate (where .Data.Pages.ByDate.Reverse "Type" "post") (index .Site.Params "archive-paginate") }}
+<section id="archive" class="archive">
+ {{- if not $paginator.HasPrev }}
+ <div class="archive-title">
+ <span class="archive-post-counter">
+ {{- $length := len .Data.Pages }}
+ {{- if eq $length 0 }}
+ {{ $lang.counter.archives.zero }}
+ {{ else }}
+ {{ printf $lang.counter.archives.other $length }}
+ {{ end -}}
+ </span>
+ </div>
+ {{- end -}}
+
+ {{- range $index, $element := $paginator.Pages -}}
+ {{- $thisYear := $element.Date.Format "2006" }}
+ {{- $lastElement := $index | add -1 | index $paginator.Pages }}
+ {{ if or (eq $index 0) ( ne ($lastElement.Date.Format "2006") $thisYear ) }}
+ <div class="collection-title">
+ <h2 class="archive-year">{{ $thisYear }}</h2>
+ </div>
+ {{- end }}
+
+ <div class="archive-post">
+ <span class="archive-post-time">
+ {{ $element.Date.Format "01-02" }}
+ </span>
+ <span class="archive-post-title">
+ <a href="{{ $element.URL }}" class="archive-post-link">
+ {{ .Title }}
+ </a>
+ </span>
+ </div>
+ {{- end -}}
+</section>
+<!-- pagination -->
+<nav class="pagination">
+ {{ 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 }} \ No newline at end of file