Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/archives.html')
-rw-r--r--layouts/_default/archives.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/layouts/_default/archives.html b/layouts/_default/archives.html
new file mode 100644
index 0000000..18b3f6c
--- /dev/null
+++ b/layouts/_default/archives.html
@@ -0,0 +1,34 @@
+{{ define "body-class" }}template-archives{{ end }}
+{{ define "main" }}
+ {{ $categories := ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
+ {{ if $categories }}
+ <div class="widget">
+ <h1 class="widget-title">Categories</h1>
+ <div class="category-list">
+ <div class="article-list--tile">
+ {{ range $categories }}
+ {{ partial "article-list/tile" (dict "context" . "size" "250x150") }}
+ {{ end }}
+ </div>
+ </div>
+ </div>
+ {{ end }}
+
+ {{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
+ {{ $notHidden := where .Site.RegularPages "Params.hidden" "!=" true }}
+ {{ $filtered := ($pages | intersect $notHidden) }}
+
+ {{ range $filtered.GroupByDate "2006" }}
+ {{ $id := lower (replace .Key " " "-") }}
+ <div class="archives-group" id="{{ $id }}">
+ <h3 class="archives-date"><a href="{{ $.Permalink }}#{{ $id }}">{{ .Key }}</a></h3>
+ <div class="article-list--compact">
+ {{ range .Pages }}
+ {{ partial "article-list/compact" . }}
+ {{ end }}
+ </div>
+ </div>
+ {{ end }}
+
+ {{ partialCached "footer/footer" . }}
+{{ end }} \ No newline at end of file