42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
{{ define "main" }}
|
|
<div
|
|
class="archive {{ with .Site.Params.doNotLoadAnimations }}
|
|
.
|
|
{{ else }}
|
|
animated fadeInDown
|
|
{{ end }}"
|
|
>
|
|
{{ range .Data.Pages.GroupByDate "2006" }}
|
|
<div class="archive__heading">{{ .Key }}</div>
|
|
{{ range .Pages }}
|
|
<ul class="archive__list">
|
|
<li class="archive__list-item">
|
|
{{ if (eq .Site.Params.disableArchiveTitleStyling true) }}
|
|
<a class="archive__list-title" href="{{ .RelPermalink }}" title="{{ .Title }}">{{ .Title }}</a>
|
|
{{ else }}
|
|
<a class="archive__list-title" href="{{ .RelPermalink }}" title="{{ .Title }}">{{ upper .Title }}</a>
|
|
{{ end }}
|
|
<div class="archive__list-date">
|
|
{{ if isset .Site.Params "listdateformat" }}
|
|
{{ if .Site.Params.localizedDates }}
|
|
{{ time.Format .Site.Params.listDateFormat .Date }}
|
|
{{ else }}
|
|
{{ .Date.Format .Site.Params.listDateFormat }}
|
|
{{ end }}
|
|
|
|
{{ else }}
|
|
{{ if .Site.Params.localizedDates }}
|
|
{{ time.Format "Jan 2" .Date }}
|
|
{{ else }}
|
|
{{ .Date.Format "Jan 2" }}
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|