mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 03:16:30 +01:00
23 lines
No EOL
939 B
HTML
23 lines
No EOL
939 B
HTML
{{ define "title" }}{{ T "all" }}{{ T .Section | default (humanize .Section) }} | {{ .Site.Title }}{{ end -}}
|
|
|
|
{{ define "content" -}}
|
|
{{ $data := .Data -}}
|
|
<div class="post-warp archive">
|
|
<h2 class="post-title animated pulse faster">
|
|
{{ printf "%s%s" (T "all") (T .Section | default (humanize .Section)) }}
|
|
</h2>
|
|
|
|
{{- range (.Paginate (.Pages.GroupByDate "2006")).PageGroups -}}
|
|
<h3>{{ .Key }}</h3>
|
|
{{- range .Pages -}}
|
|
<article class="archive-item">
|
|
<a href="{{ .RelPermalink }}" class="archive-item-link">{{ .Title }}</a>
|
|
<span class="archive-item-date">
|
|
{{- .Date.Format (.Site.Params.dateFormatToUse | default "01-02") -}}
|
|
</span>
|
|
</article>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- partial "paginator.html" . -}}
|
|
</div>
|
|
{{- end }} |