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:
-rw-r--r--assets/scss/partials/layout/archives.scss (renamed from assets/scss/partials/layout/archive.scss)6
-rw-r--r--assets/scss/partials/widgets.scss6
-rw-r--r--assets/scss/style.scss2
-rw-r--r--exampleSite/config.toml8
-rw-r--r--exampleSite/content/page/archive.md6
-rw-r--r--exampleSite/content/page/archives.md6
-rw-r--r--i18n/en.toml6
-rw-r--r--i18n/zh-CN.toml4
-rw-r--r--layouts/_default/archives.html (renamed from layouts/_default/archive.html)6
-rw-r--r--layouts/partials/widget/archives.html (renamed from layouts/partials/widget/archive.html)20
10 files changed, 35 insertions, 35 deletions
diff --git a/assets/scss/partials/layout/archive.scss b/assets/scss/partials/layout/archives.scss
index ec3b456..569348e 100644
--- a/assets/scss/partials/layout/archive.scss
+++ b/assets/scss/partials/layout/archives.scss
@@ -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;
diff --git a/assets/scss/partials/widgets.scss b/assets/scss/partials/widgets.scss
index 3874e7d..c80c8ad 100644
--- a/assets/scss/partials/widgets.scss
+++ b/assets/scss/partials/widgets.scss
@@ -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);
diff --git a/assets/scss/style.scss b/assets/scss/style.scss
index 44a45ce..908be5e 100644
--- a/assets/scss/style.scss
+++ b/assets/scss/style.scss
@@ -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";
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 64039df..137ea8c 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -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]
diff --git a/exampleSite/content/page/archive.md b/exampleSite/content/page/archive.md
deleted file mode 100644
index 7c51bea..0000000
--- a/exampleSite/content/page/archive.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: "Archive"
-date: 2019-05-28
-layout: "archive"
-slug: "archive"
----
diff --git a/exampleSite/content/page/archives.md b/exampleSite/content/page/archives.md
new file mode 100644
index 0000000..e25595b
--- /dev/null
+++ b/exampleSite/content/page/archives.md
@@ -0,0 +1,6 @@
+---
+title: "Archives"
+date: 2019-05-28
+layout: "archives"
+slug: "archives"
+---
diff --git a/i18n/en.toml b/i18n/en.toml
index 61c5e4a..7f2036e 100644
--- a/i18n/en.toml
+++ b/i18n/en.toml
@@ -7,10 +7,10 @@
[lastUpdatedOn]
other ="Last updated on {{ .Count }}"
-[widgetArchiveTitle]
- other = "Archive"
+[widgetArchivesTitle]
+ other = "Archives"
-[widgetArchiveMore]
+[widgetArchivesMore]
other = "More"
[widgetTagCloudTitle]
diff --git a/i18n/zh-CN.toml b/i18n/zh-CN.toml
index 44a76c5..d8852e4 100644
--- a/i18n/zh-CN.toml
+++ b/i18n/zh-CN.toml
@@ -7,10 +7,10 @@
[lastUpdatedOn]
other ="最后更新于 {{ .Count }}"
-[widgetArchiveTitle]
+[widgetArchivesTitle]
other = "归档"
-[widgetArchiveMore]
+[widgetArchivesMore]
other = "更多"
[widgetTagCloudTitle]
diff --git a/layouts/_default/archive.html b/layouts/_default/archives.html
index b68e40a..18b3f6c 100644
--- a/layouts/_default/archive.html
+++ b/layouts/_default/archives.html
@@ -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" . }}
diff --git a/layouts/partials/widget/archive.html b/layouts/partials/widget/archives.html
index 1dae730..de80ee5 100644
--- a/layouts/partials/widget/archive.html
+++ b/layouts/partials/widget/archives.html
@@ -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 }}