refactor: rename archive -> archives

This commit is contained in:
Jimmy Cai 2020-09-13 11:22:47 +02:00
parent c600f87213
commit 7379bbe412
No known key found for this signature in database
GPG key ID: 3EA408E527F37B18
10 changed files with 35 additions and 35 deletions

View file

@ -1,6 +1,6 @@
.archive-group {
.archives-group {
margin-bottom: var(--section-separation);
.archive-date {
.archives-date {
text-transform: uppercase;
margin-bottom: 10px;
font-size: 1.6rem;
@ -12,7 +12,7 @@
}
}
.template-archive {
.template-archives {
.category-list {
margin-bottom: var(--section-separation);
overflow-x: auto;

View file

@ -43,9 +43,9 @@
}
}
/* Archive widget */
.widget.archive {
.archive-year {
/* Archives widget */
.widget.archives {
.archives-year {
margin-bottom: 10px;
a {
background-color: var(--card-background);

View file

@ -18,7 +18,7 @@
@import "partials/pagination.scss";
@import "partials/sidebar.scss";
@import "partials/base.scss";
@import "partials/layout/archive.scss";
@import "partials/layout/archives.scss";
@import "partials/layout/article.scss";
@import "partials/layout/taxonomy.scss";
@import "partials/layout/404.scss";

View file

@ -29,11 +29,11 @@ DefaultContentLanguage = "en" # Theme i18n support
# Only Disqus is available so far
provider = "disqus"
[params.widgets]
enabled = ['archive', 'tag-cloud']
[params.widgets.archive]
enabled = ['archives', 'tag-cloud']
[params.widgets.archives]
limit = 5
### Archive page relative URL
path = "archive"
### Archives page relative URL
path = "archives"
[params.widgets.tagCloud]
limit = 10
[params.opengraph]

View file

@ -1,6 +0,0 @@
---
title: "Archive"
date: 2019-05-28
layout: "archive"
slug: "archive"
---

View file

@ -0,0 +1,6 @@
---
title: "Archives"
date: 2019-05-28
layout: "archives"
slug: "archives"
---

View file

@ -7,10 +7,10 @@
[lastUpdatedOn]
other ="Last updated on {{ .Count }}"
[widgetArchiveTitle]
other = "Archive"
[widgetArchivesTitle]
other = "Archives"
[widgetArchiveMore]
[widgetArchivesMore]
other = "More"
[widgetTagCloudTitle]

View file

@ -7,10 +7,10 @@
[lastUpdatedOn]
other ="最后更新于 {{ .Count }}"
[widgetArchiveTitle]
[widgetArchivesTitle]
other = "归档"
[widgetArchiveMore]
[widgetArchivesMore]
other = "更多"
[widgetTagCloudTitle]

View file

@ -1,4 +1,4 @@
{{ define "body-class" }}template-archive{{ end }}
{{ define "body-class" }}template-archives{{ end }}
{{ define "main" }}
{{ $categories := ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
{{ if $categories }}
@ -20,8 +20,8 @@
{{ range $filtered.GroupByDate "2006" }}
{{ $id := lower (replace .Key " " "-") }}
<div class="archive-group" id="{{ $id }}">
<h3 class="archive-date"><a href="{{ $.Permalink }}#{{ $id }}">{{ .Key }}</a></h3>
<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" . }}

View file

@ -1,28 +1,28 @@
<section class="widget archive">
<section class="widget archives">
<div class="widget-icon">
{{ (resources.Get "icons/infinity.svg").Content | safeHTML }}
</div>
<h1 class="widget-title">{{ T "widgetArchiveTitle" }}</h1>
<h1 class="widget-title">{{ T "widgetArchivesTitle" }}</h1>
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
{{ $notHidden := where .Site.RegularPages "Params.hidden" "!=" true }}
{{ $filtered := ($pages | intersect $notHidden) }}
{{ $archive := $filtered.GroupByDate "2006" }}
{{ $archives := $filtered.GroupByDate "2006" }}
{{ range first .Site.Params.widgets.archive.limit ($archive) }}
{{ range first .Site.Params.widgets.archives.limit ($archives) }}
{{ $id := lower (replace .Key " " "-") }}
<div class="archive-year">
<a href="{{ $.Site.Params.widgets.archive.path | relLangURL }}#{{ $id }}">
<div class="archives-year">
<a href="{{ $.Site.Params.widgets.archives.path | relLangURL }}#{{ $id }}">
<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 }}">
<span class="year">{{ T "widgetArchiveMore" }}</span>
{{ if gt (len $archives) .Site.Params.widgets.archives.limit }}
<div class="archives-year">
<a href="{{ $.Site.Params.widgets.archives.path | relLangURL }}">
<span class="year">{{ T "widgetArchivesMore" }}</span>
</a>
</div>
{{ end }}