forked from CaiJimmy/hugo-theme-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: article category overflow (CaiJimmy#1055) closes CaiJimmy#1045 * fix(i18n): fix unlocalized article publish/lastUpdated date (CaiJimmy#1050) closes CaiJimmy#1040 * fix: use Hugo's default RSS template value source for lastBuildDate (CaiJimmy#1006) Use Hugo's default RSS template value source for lastBuildDate * feat(comments): add support to Gitalk `proxy` parameter (CaiJimmy#1012) Co-authored-by: Jimmy Cai <hi@jimmycai.com> * feat(i18n): add Occitan translations (CaiJimmy#1034) * feat(i18n): add Bulgarian translations (CaiJimmy#1007) * doc: add backslash to `baseURL` in exampleSite (CaiJimmy#1009) * chore: bump Twikoo front-end to latest released version `1.6.39` (CaiJimmy#1021) * fix: use `css.Sass` instead of deprecated `resources.ToCSS` (CaiJimmy#1054) * doc: add `markup.goldmark.extensions.passthrough` in exampleSite (CaiJimmy#1056) Related: CaiJimmy#1019 * fix(exampleSite): site config key `paginate` was deprecated (CaiJimmy#1057) fix: site config key paginate was deprecated * release: 3.27.0 * fix: show different subtitle for each i18n variant in exampleSite (CaiJimmy#1068) * fix(colorScheme): systemPreferScheme not initialized on start up (CaiJimmy#1061) * fix(i18n): missing translation for title of categories widget in fr.yaml (CaiJimmy#1059) * feat(giscus): use current language as fallback for `lang` param and add `loading` param (CaiJimmy#1075) fix: giscus use current lang as default, and add missing `loading` params * feat: add fingerprints to the JS file URL to utilize HTTP caching (CaiJimmy#1076) * release: 3.28.0 * feat: search box in 404 page (CaiJimmy#1081) * fix(giscus): fallback to `en` if no language code is set (CaiJimmy#1084) * release: 3.29.0 --------- Co-authored-by: Jimmy Cai <hi@jimmycai.com> Co-authored-by: weeix <weeix@users.noreply.github.com> Co-authored-by: Anthony Simmon <simmon.anthony@gmail.com> Co-authored-by: DashJay <45532257+dashjay@users.noreply.github.com> Co-authored-by: ensag-dev <59049879+ensag-dev@users.noreply.github.com> Co-authored-by: Vladimir Vitkov <5081863+zeridon@users.noreply.github.com> Co-authored-by: saikadaramakaisosjupita <162842238+saikadaramakaisosjupita@users.noreply.github.com> Co-authored-by: Syafa Adena <gvoze32@gmail.com> Co-authored-by: powerfullz <61956140+powerfullz@users.noreply.github.com> Co-authored-by: PukNgae Cryolitia <Cryolitia@gmail.com> Co-authored-by: onavas33 <71631187+onavas33@users.noreply.github.com> Co-authored-by: xiaoxiyao <xiyao.luoxiao@gmail.com>
- Loading branch information
1 parent
0fed866
commit 5d5d301
Showing
19 changed files
with
235 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,6 +131,7 @@ | |
.article-tags { | ||
display: flex; | ||
gap: 10px; | ||
flex-wrap: wrap; | ||
|
||
a { | ||
color: var(--accent-color-text); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,6 @@ | |
} | ||
|
||
.article-tags { | ||
flex-wrap: wrap; | ||
text-transform: unset; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
toggleMenu: | ||
other: Покажи Меню | ||
|
||
darkMode: | ||
other: Тъмен Режим | ||
|
||
list: | ||
page: | ||
one: "{{ .Count }} страница" | ||
other: "{{ .Count }} страници" | ||
|
||
section: | ||
other: Секция | ||
|
||
subsection: | ||
one: Подсекция | ||
other: Подсекции | ||
|
||
article: | ||
back: | ||
other: Назад | ||
|
||
tableOfContents: | ||
other: Съдържание | ||
|
||
relatedContent: | ||
other: Свързано Съдържание | ||
|
||
lastUpdatedOn: | ||
other: Последна промяна на | ||
|
||
readingTime: | ||
one: "{{ .Count }} minute read" | ||
other: "{{ .Count }} minute read" | ||
|
||
notFound: | ||
title: | ||
other: Не е намерено | ||
|
||
subtitle: | ||
other: Страницата която търсите не е открита | ||
|
||
widget: | ||
archives: | ||
title: | ||
other: Архиви | ||
|
||
more: | ||
other: Повече | ||
|
||
tagCloud: | ||
title: | ||
other: Тагове | ||
categoriesCloud: | ||
title: | ||
other: Категории | ||
|
||
search: | ||
title: | ||
other: Търсене | ||
|
||
placeholder: | ||
other: Напишете нещо... | ||
|
||
resultTitle: | ||
other: "#PAGES_COUNT страници (#TIME_SECONDS секунди)" | ||
|
||
footer: | ||
builtWith: | ||
other: Създадено с {{ .Generator }} | ||
|
||
designedBy: | ||
other: Тема {{ .Theme }} създадена от {{ .DesignedBy }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,9 @@ widget: | |
tagCloud: | ||
title: | ||
other: Mots clés | ||
categoriesCloud: | ||
title: | ||
other: Catégories | ||
|
||
search: | ||
title: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
toggleMenu: | ||
other: Alternar menú | ||
|
||
darkMode: | ||
other: Mòde fosc | ||
|
||
list: | ||
page: | ||
one: "{{ .Count }} pagina" | ||
other: "{{ .Count }} paginas" | ||
|
||
section: | ||
other: Seccion | ||
|
||
subsection: | ||
one: Josseccion | ||
other: Josseccions | ||
|
||
article: | ||
back: | ||
other: Tornar | ||
|
||
tableOfContents: | ||
other: Taula de contengut | ||
|
||
relatedContent: | ||
other: Contenguts relacionats | ||
|
||
lastUpdatedOn: | ||
other: Darrièra actualizacion | ||
readingTime: | ||
one: "{{ .Count }} minuta de lectura" | ||
other: "{{ .Count }} minutas de lectura" | ||
|
||
notFound: | ||
title: | ||
other: Non trobat | ||
|
||
subtitle: | ||
other: Aquesta pagina existís pas | ||
|
||
widget: | ||
archives: | ||
title: | ||
other: Archiu | ||
|
||
more: | ||
other: Mai | ||
|
||
tagCloud: | ||
title: | ||
other: Etiquetas | ||
categoriesCloud: | ||
title: | ||
other: Categorias | ||
|
||
search: | ||
title: | ||
other: Cercar | ||
|
||
placeholder: | ||
other: Picatz quicòm... | ||
|
||
resultTitle: | ||
other: "#PAGES_COUNT paginas dins (#TIME_SECONDS segons)" | ||
|
||
footer: | ||
builtWith: | ||
other: Creat amb {{ .Generator }} | ||
|
||
designedBy: | ||
other: Tàma {{ .Theme }} concebut per {{ .DesignedBy }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.