Hugo-theme-stack/layouts/partials/widget/archive.html

30 lines
1.2 KiB
HTML
Raw Normal View History

2020-08-22 07:20:08 -04:00
<section class="widget archive">
<div class="widget-icon">
{{ (resources.Get "icons/infinity.svg").Content | safeHTML }}
</div>
2020-09-09 11:17:09 -04:00
<h1 class="widget-title">{{ T "widgetArchiveTitle" }}</h1>
2020-08-22 07:20:08 -04:00
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
{{ $notHidden := where .Site.RegularPages "Params.hidden" "!=" true }}
{{ $filtered := ($pages | intersect $notHidden) }}
{{ $archive := $filtered.GroupByDate "2006" }}
{{ range first .Site.Params.widgets.archive.limit ($archive) }}
2020-08-22 07:20:08 -04:00
{{ $id := lower (replace .Key " " "-") }}
<div class="archive-year">
<a href="{{ $.Site.Params.widgets.archive.path | relLangURL }}#{{ $id }}">
2020-08-22 07:20:08 -04:00
<span class="year">{{ .Key }}</span>
<span class="count">{{ len .Pages }}</span>
</a>
</div>
{{ end }}
{{ if gt (len $archive) .Site.Params.widgets.archive.limit }}
<div class="archive-year">
<a href="{{ $.Site.Params.widgets.archive.path | relLangURL }}">
2020-09-09 11:17:09 -04:00
<span class="year">{{ T "widgetArchiveMore" }}</span>
</a>
</div>
{{ end }}
2020-08-22 07:20:08 -04:00
</section>