diff --git a/config.toml b/config.toml
index e20c8986..36ffea83 100644
--- a/config.toml
+++ b/config.toml
@@ -2,4 +2,4 @@
[module.hugoVersion]
extended = true
min = "0.87.0"
-max = "0.127.0"
+max = "0.128.0"
diff --git a/config/_default/params.toml b/config/_default/params.toml
index 10cfec16..19f15f82 100644
--- a/config/_default/params.toml
+++ b/config/_default/params.toml
@@ -74,7 +74,7 @@ disableTextInHeader = false
showTaxonomies = false
showAuthorsBadges = false
showWordCount = true
- # sharingLinks = [ "linkedin", "twitter", "reddit", "pinterest", "facebook", "email", "whatsapp", "telegram"]
+ # sharingLinks = [ "linkedin", "twitter", "bluesky", "reddit", "pinterest", "facebook", "email", "whatsapp", "telegram"]
showZenMode = false
[list]
diff --git a/data/sharing.json b/data/sharing.json
index a0669ffe..f176a2cd 100644
--- a/data/sharing.json
+++ b/data/sharing.json
@@ -38,5 +38,10 @@
"icon": "telegram",
"title": "sharing.telegram",
"url": "https://t.me/share/url?url=%s&resubmit=true&title=%s"
+ },
+ "bluesky": {
+ "icon": "bluesky",
+ "title": "sharing.bluesky",
+ "url": "https://bsky.app/intent/compose?text=%[2]s+%[1]s"
}
}
\ No newline at end of file
diff --git a/exampleSite/config/_default/params.toml b/exampleSite/config/_default/params.toml
index 093a4937..90f5cbaf 100644
--- a/exampleSite/config/_default/params.toml
+++ b/exampleSite/config/_default/params.toml
@@ -73,7 +73,7 @@ smartTOCHideUnfocusedChildren = false
showTaxonomies = true
showAuthorsBadges = true
showWordCount = false
- sharingLinks = [ "linkedin", "twitter", "reddit", "whatsapp", "telegram", "pinterest", "facebook", "email"]
+ sharingLinks = [ "linkedin", "twitter", "bluesky", "reddit", "whatsapp", "telegram", "pinterest", "facebook", "email"]
showZenMode = true
[list]
diff --git a/exampleSite/content/docs/configuration/index.it.md b/exampleSite/content/docs/configuration/index.it.md
index 9ab5fc66..accb49c3 100644
--- a/exampleSite/content/docs/configuration/index.it.md
+++ b/exampleSite/content/docs/configuration/index.it.md
@@ -88,6 +88,7 @@ The theme currently supports the following languages by default:
| Russian | `ru` |
| Turkish | `tr` |
| Vietnamese | `vi` |
+| Ukrainian | `uk` |
| Simplified Chinese (China) | `zh-cn` |
| Traditional Chinese (Taiwan) | `zh-tw` |
diff --git a/exampleSite/content/docs/shortcodes/index.it.md b/exampleSite/content/docs/shortcodes/index.it.md
index ba1bd718..4102673b 100644
--- a/exampleSite/content/docs/shortcodes/index.it.md
+++ b/exampleSite/content/docs/shortcodes/index.it.md
@@ -197,6 +197,8 @@ This shortcode is for importing code from external sources easily without copyin
| --------- | ------------------------------------------------------- |
| `url` | **Required** URL to an externally hosted code file. |
| `type` | Code type used for syntax highlighting. |
+| `startLine` | **Optional** The line number to start the import from. |
+| `endLine` | **Optional** The line number to end the import at. |
@@ -210,6 +212,13 @@ This shortcode is for importing code from external sources easily without copyin
```
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+```md
+{{* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
+
+```
+
+{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18">}}
+
diff --git a/exampleSite/content/docs/shortcodes/index.ja.md b/exampleSite/content/docs/shortcodes/index.ja.md
index ba1bd718..a93cc237 100644
--- a/exampleSite/content/docs/shortcodes/index.ja.md
+++ b/exampleSite/content/docs/shortcodes/index.ja.md
@@ -197,7 +197,8 @@ This shortcode is for importing code from external sources easily without copyin
| --------- | ------------------------------------------------------- |
| `url` | **Required** URL to an externally hosted code file. |
| `type` | Code type used for syntax highlighting. |
-
+| `startLine` | **Optional** The line number to start the import from. |
+| `endLine` | **Optional** The line number to end the import at. |
@@ -210,6 +211,13 @@ This shortcode is for importing code from external sources easily without copyin
```
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+```md
+{{* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
+
+```
+
+{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18">}}
+
diff --git a/exampleSite/content/docs/shortcodes/index.md b/exampleSite/content/docs/shortcodes/index.md
index 9bb3f042..29cb834b 100644
--- a/exampleSite/content/docs/shortcodes/index.md
+++ b/exampleSite/content/docs/shortcodes/index.md
@@ -197,6 +197,8 @@ This shortcode is for importing code from external sources easily without copyin
| --------- | ------------------------------------------------------- |
| `url` | **Required** URL to an externally hosted code file. |
| `type` | Code type used for syntax highlighting. |
+| `startLine` | **Optional** The line number to start the import from. |
+| `endLine` | **Optional** The line number to end the import at. |
@@ -210,6 +212,13 @@ This shortcode is for importing code from external sources easily without copyin
```
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+```md
+{{* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
+
+```
+
+{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18">}}
+
diff --git a/exampleSite/content/docs/shortcodes/index.zh-cn.md b/exampleSite/content/docs/shortcodes/index.zh-cn.md
index 91c0f483..25bc4cdb 100644
--- a/exampleSite/content/docs/shortcodes/index.zh-cn.md
+++ b/exampleSite/content/docs/shortcodes/index.zh-cn.md
@@ -197,6 +197,8 @@ data: {
| --------- | ---------------------------------- |
| `url` | **必需的** 外部托管代码文件的 URL. |
| `type` | 用于语法突出显示的代码类型. |
+| `startLine` | **可选** 从代码文件中导入的起始行. |
+| `endLine` | **可选** 从代码文件中导入的结束行. |
@@ -211,6 +213,13 @@ data: {
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+```md
+{{* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
+
+```
+
+{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18">}}
+
diff --git a/exampleSite/content/docs/welcome/index.md b/exampleSite/content/docs/welcome/index.md
index e3795834..733600b5 100644
--- a/exampleSite/content/docs/welcome/index.md
+++ b/exampleSite/content/docs/welcome/index.md
@@ -26,7 +26,7 @@ A highly requested feature, Blowfish is now multilingual! If you publish your co
:gb: :de: :fr: :es: :cn: :brazil: :tr: :bangladesh:
-Thanks to submissions from the community, Blowfish has already been translated into [twenty-seven languages](https://github.com/nunocoracao/blowfish/tree/main/i18n) with more to be added over time. By the way, [pull requests](https://github.com/nunocoracao/blowfish/pulls) for new languages are always welcome!
+Thanks to submissions from the community, Blowfish has already been translated into [twenty-eight languages](https://github.com/nunocoracao/blowfish/tree/main/i18n) with more to be added over time. By the way, [pull requests](https://github.com/nunocoracao/blowfish/pulls) for new languages are always welcome!
## RTL language support
diff --git a/exampleSite/content/users/50-nuances-octets.fr/feature.jpg b/exampleSite/content/users/50-nuances-octets.fr/feature.jpg
index 3c28528b..f8bab8b8 100644
Binary files a/exampleSite/content/users/50-nuances-octets.fr/feature.jpg and b/exampleSite/content/users/50-nuances-octets.fr/feature.jpg differ
diff --git a/exampleSite/content/users/50-nuances-octets.fr/index.it.md b/exampleSite/content/users/50-nuances-octets.fr/index.it.md
index aee0e35f..a9c74746 100644
--- a/exampleSite/content/users/50-nuances-octets.fr/index.it.md
+++ b/exampleSite/content/users/50-nuances-octets.fr/index.it.md
@@ -2,7 +2,7 @@
title: "50-nuances-octets.fr"
tags: [Sito dell'organizzazione]
externalUrl: "https://www.50-nuances-octets.fr/"
- date: 9959-08-08
+ date: 9960-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/50-nuances-octets.fr/index.ja.md b/exampleSite/content/users/50-nuances-octets.fr/index.ja.md
index e57d09f8..85f2d6d9 100644
--- a/exampleSite/content/users/50-nuances-octets.fr/index.ja.md
+++ b/exampleSite/content/users/50-nuances-octets.fr/index.ja.md
@@ -2,7 +2,7 @@
title: "50-nuances-octets.fr"
tags: [組織サイト]
externalUrl: "https://www.50-nuances-octets.fr/"
- date: 9959-08-08
+ date: 9960-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/50-nuances-octets.fr/index.md b/exampleSite/content/users/50-nuances-octets.fr/index.md
index 6a86e28b..6c64a8f5 100644
--- a/exampleSite/content/users/50-nuances-octets.fr/index.md
+++ b/exampleSite/content/users/50-nuances-octets.fr/index.md
@@ -2,7 +2,7 @@
title: "50-nuances-octets.fr"
tags: [Organization site]
externalUrl: "https://www.50-nuances-octets.fr/"
- date: 9959-08-08
+ date: 9960-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/50-nuances-octets.fr/index.zh-cn.md b/exampleSite/content/users/50-nuances-octets.fr/index.zh-cn.md
index 26a25d3b..5137db37 100644
--- a/exampleSite/content/users/50-nuances-octets.fr/index.zh-cn.md
+++ b/exampleSite/content/users/50-nuances-octets.fr/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "50-nuances-octets.fr"
tags: [组织站点]
externalUrl: "https://www.50-nuances-octets.fr/"
- date: 9959-08-08
+ date: 9960-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Adam Madej - Gameplay Animator/feature.jpg b/exampleSite/content/users/Adam Madej - Gameplay Animator/feature.jpg
index 3bf57cc8..6b998691 100644
Binary files a/exampleSite/content/users/Adam Madej - Gameplay Animator/feature.jpg and b/exampleSite/content/users/Adam Madej - Gameplay Animator/feature.jpg differ
diff --git a/exampleSite/content/users/Adam Madej - Gameplay Animator/index.it.md b/exampleSite/content/users/Adam Madej - Gameplay Animator/index.it.md
index ecddc552..519dc991 100644
--- a/exampleSite/content/users/Adam Madej - Gameplay Animator/index.it.md
+++ b/exampleSite/content/users/Adam Madej - Gameplay Animator/index.it.md
@@ -2,7 +2,7 @@
title: "Adam Madej - Gameplay Animator"
tags: [Sito portfolio, Blog, Sito personale]
externalUrl: "http://www.adammadej.com/"
- date: 9923-08-08
+ date: 9925-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Adam Madej - Gameplay Animator/index.ja.md b/exampleSite/content/users/Adam Madej - Gameplay Animator/index.ja.md
index ef903921..742c5ed9 100644
--- a/exampleSite/content/users/Adam Madej - Gameplay Animator/index.ja.md
+++ b/exampleSite/content/users/Adam Madej - Gameplay Animator/index.ja.md
@@ -2,7 +2,7 @@
title: "Adam Madej - Gameplay Animator"
tags: [ポートフォリオサイト, ブログ, 個人サイト]
externalUrl: "http://www.adammadej.com/"
- date: 9923-08-08
+ date: 9925-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Adam Madej - Gameplay Animator/index.md b/exampleSite/content/users/Adam Madej - Gameplay Animator/index.md
index 3120ea98..20ad765d 100644
--- a/exampleSite/content/users/Adam Madej - Gameplay Animator/index.md
+++ b/exampleSite/content/users/Adam Madej - Gameplay Animator/index.md
@@ -2,7 +2,7 @@
title: "Adam Madej - Gameplay Animator"
tags: [Portfolio Site,Blog,Personal Site]
externalUrl: "http://www.adammadej.com/"
- date: 9923-08-08
+ date: 9925-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Adam Madej - Gameplay Animator/index.zh-cn.md b/exampleSite/content/users/Adam Madej - Gameplay Animator/index.zh-cn.md
index 3e2bb405..d3dae1b6 100644
--- a/exampleSite/content/users/Adam Madej - Gameplay Animator/index.zh-cn.md
+++ b/exampleSite/content/users/Adam Madej - Gameplay Animator/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "Adam Madej - Gameplay Animator"
tags: [作品集网站, 博客, 个人网站]
externalUrl: "http://www.adammadej.com/"
- date: 9923-08-08
+ date: 9925-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Beauty Formulation/feature.jpg b/exampleSite/content/users/Beauty Formulation/feature.jpg
new file mode 100644
index 00000000..bef6b8c9
Binary files /dev/null and b/exampleSite/content/users/Beauty Formulation/feature.jpg differ
diff --git a/exampleSite/content/users/Beauty Formulation/index.it.md b/exampleSite/content/users/Beauty Formulation/index.it.md
new file mode 100644
index 00000000..5b5b14a1
--- /dev/null
+++ b/exampleSite/content/users/Beauty Formulation/index.it.md
@@ -0,0 +1,14 @@
+---
+ title: "Beauty Formulation"
+ tags: [Sito aziendale]
+ externalUrl: "https://www.beautyformulation.com/"
+ date: 9918-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
+
diff --git a/exampleSite/content/users/Beauty Formulation/index.ja.md b/exampleSite/content/users/Beauty Formulation/index.ja.md
new file mode 100644
index 00000000..72d03bb6
--- /dev/null
+++ b/exampleSite/content/users/Beauty Formulation/index.ja.md
@@ -0,0 +1,14 @@
+---
+ title: "Beauty Formulation"
+ tags: [企業サイト]
+ externalUrl: "https://www.beautyformulation.com/"
+ date: 9918-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
+
diff --git a/exampleSite/content/users/Beauty Formulation/index.md b/exampleSite/content/users/Beauty Formulation/index.md
new file mode 100644
index 00000000..de3ca20f
--- /dev/null
+++ b/exampleSite/content/users/Beauty Formulation/index.md
@@ -0,0 +1,13 @@
+---
+ title: "Beauty Formulation"
+ tags: [Company site]
+ externalUrl: "https://www.beautyformulation.com/"
+ date: 9918-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
diff --git a/exampleSite/content/users/Beauty Formulation/index.zh-cn.md b/exampleSite/content/users/Beauty Formulation/index.zh-cn.md
new file mode 100644
index 00000000..75befaf2
--- /dev/null
+++ b/exampleSite/content/users/Beauty Formulation/index.zh-cn.md
@@ -0,0 +1,14 @@
+---
+ title: "Beauty Formulation"
+ tags: [公司网站]
+ externalUrl: "https://www.beautyformulation.com/"
+ date: 9918-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
+
diff --git a/exampleSite/content/users/BoringTech.net/feature.jpg b/exampleSite/content/users/BoringTech.net/feature.jpg
index ef1a5e3d..d517a0ca 100644
Binary files a/exampleSite/content/users/BoringTech.net/feature.jpg and b/exampleSite/content/users/BoringTech.net/feature.jpg differ
diff --git a/exampleSite/content/users/BoringTech.net/index.it.md b/exampleSite/content/users/BoringTech.net/index.it.md
index 5172f695..a781db01 100644
--- a/exampleSite/content/users/BoringTech.net/index.it.md
+++ b/exampleSite/content/users/BoringTech.net/index.it.md
@@ -2,7 +2,7 @@
title: "BoringTech.net"
tags: [Sito personale, Blog]
externalUrl: "https://boringtech.net/"
- date: 9937-08-08
+ date: 9938-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/BoringTech.net/index.ja.md b/exampleSite/content/users/BoringTech.net/index.ja.md
index 3c4348f5..10a6ae10 100644
--- a/exampleSite/content/users/BoringTech.net/index.ja.md
+++ b/exampleSite/content/users/BoringTech.net/index.ja.md
@@ -2,7 +2,7 @@
title: "BoringTech.net"
tags: [個人サイト, ブログ]
externalUrl: "https://boringtech.net/"
- date: 9937-08-08
+ date: 9938-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/BoringTech.net/index.md b/exampleSite/content/users/BoringTech.net/index.md
index eaed5438..c9b360a4 100644
--- a/exampleSite/content/users/BoringTech.net/index.md
+++ b/exampleSite/content/users/BoringTech.net/index.md
@@ -2,7 +2,7 @@
title: "BoringTech.net"
tags: [Personal Site,Blog]
externalUrl: "https://boringtech.net/"
- date: 9937-08-08
+ date: 9938-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/BoringTech.net/index.zh-cn.md b/exampleSite/content/users/BoringTech.net/index.zh-cn.md
index 4e8c01a1..4935f260 100644
--- a/exampleSite/content/users/BoringTech.net/index.zh-cn.md
+++ b/exampleSite/content/users/BoringTech.net/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "BoringTech.net"
tags: [个人网站, 博客]
externalUrl: "https://boringtech.net/"
- date: 9937-08-08
+ date: 9938-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/DXPetti.com/index.it.md b/exampleSite/content/users/DXPetti.com/index.it.md
index ddb14afd..348d2826 100644
--- a/exampleSite/content/users/DXPetti.com/index.it.md
+++ b/exampleSite/content/users/DXPetti.com/index.it.md
@@ -2,7 +2,7 @@
title: "DXPetti.com"
tags: [Sito personale, Blog]
externalUrl: "https://www.dxpetti.com/"
- date: 9932-08-08
+ date: 9934-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/DXPetti.com/index.ja.md b/exampleSite/content/users/DXPetti.com/index.ja.md
index d514c751..ea08f682 100644
--- a/exampleSite/content/users/DXPetti.com/index.ja.md
+++ b/exampleSite/content/users/DXPetti.com/index.ja.md
@@ -2,7 +2,7 @@
title: "DXPetti.com"
tags: [個人サイト, ブログ]
externalUrl: "https://www.dxpetti.com/"
- date: 9932-08-08
+ date: 9934-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/DXPetti.com/index.md b/exampleSite/content/users/DXPetti.com/index.md
index 3605c302..b91909cc 100644
--- a/exampleSite/content/users/DXPetti.com/index.md
+++ b/exampleSite/content/users/DXPetti.com/index.md
@@ -2,7 +2,7 @@
title: "DXPetti.com"
tags: [Personal site,Blog]
externalUrl: "https://www.dxpetti.com/"
- date: 9932-08-08
+ date: 9934-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/DXPetti.com/index.zh-cn.md b/exampleSite/content/users/DXPetti.com/index.zh-cn.md
index 16184cfb..92c79faf 100644
--- a/exampleSite/content/users/DXPetti.com/index.zh-cn.md
+++ b/exampleSite/content/users/DXPetti.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "DXPetti.com"
tags: [个人网站, 博客]
externalUrl: "https://www.dxpetti.com/"
- date: 9932-08-08
+ date: 9934-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Ignacio Conde/feature.jpg b/exampleSite/content/users/Ignacio Conde/feature.jpg
index 3accfeb3..8752ddb2 100644
Binary files a/exampleSite/content/users/Ignacio Conde/feature.jpg and b/exampleSite/content/users/Ignacio Conde/feature.jpg differ
diff --git a/exampleSite/content/users/Ignacio Conde/index.it.md b/exampleSite/content/users/Ignacio Conde/index.it.md
index 5931adfa..ec192ed3 100644
--- a/exampleSite/content/users/Ignacio Conde/index.it.md
+++ b/exampleSite/content/users/Ignacio Conde/index.it.md
@@ -2,7 +2,7 @@
title: "Ignacio Conde"
tags: [Sito personale, Sito portfolio, Sviluppatore di software, Sviluppatore di videogiochi]
externalUrl: "http://www.ignaciomconde.com/"
- date: 9919-08-08
+ date: 9921-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Ignacio Conde/index.ja.md b/exampleSite/content/users/Ignacio Conde/index.ja.md
index 2fee96e8..58b79e4e 100644
--- a/exampleSite/content/users/Ignacio Conde/index.ja.md
+++ b/exampleSite/content/users/Ignacio Conde/index.ja.md
@@ -2,7 +2,7 @@
title: "Ignacio Conde"
tags: [個人サイト, ポートフォリオサイト, ソフトウェア開発者, ビデオゲーム開発者]
externalUrl: "http://www.ignaciomconde.com/"
- date: 9919-08-08
+ date: 9921-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Ignacio Conde/index.md b/exampleSite/content/users/Ignacio Conde/index.md
index ae7656f1..49206408 100644
--- a/exampleSite/content/users/Ignacio Conde/index.md
+++ b/exampleSite/content/users/Ignacio Conde/index.md
@@ -2,7 +2,7 @@
title: "Ignacio Conde"
tags: [Personal Site,Portfolio Site,Software Developer,Videogame Developer]
externalUrl: "http://www.ignaciomconde.com/"
- date: 9919-08-08
+ date: 9921-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Ignacio Conde/index.zh-cn.md b/exampleSite/content/users/Ignacio Conde/index.zh-cn.md
index d9e0957c..c9508063 100644
--- a/exampleSite/content/users/Ignacio Conde/index.zh-cn.md
+++ b/exampleSite/content/users/Ignacio Conde/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "Ignacio Conde"
tags: [个人网站, 作品集网站, 软件开发人员, 视频游戏开发商]
externalUrl: "http://www.ignaciomconde.com/"
- date: 9919-08-08
+ date: 9921-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Joshua Blais/index.it.md b/exampleSite/content/users/Joshua Blais/index.it.md
index 745734e6..7caa6d61 100644
--- a/exampleSite/content/users/Joshua Blais/index.it.md
+++ b/exampleSite/content/users/Joshua Blais/index.it.md
@@ -2,7 +2,7 @@
title: "Joshua Blais"
tags: [Sito personale, Autore, Giardino digitale]
externalUrl: "https://joshblais.com/"
- date: 9917-08-08
+ date: 9919-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Joshua Blais/index.ja.md b/exampleSite/content/users/Joshua Blais/index.ja.md
index 13640b4e..1fa2f82a 100644
--- a/exampleSite/content/users/Joshua Blais/index.ja.md
+++ b/exampleSite/content/users/Joshua Blais/index.ja.md
@@ -2,7 +2,7 @@
title: "Joshua Blais"
tags: [個人サイト, 著者, デジタルガーデン]
externalUrl: "https://joshblais.com/"
- date: 9917-08-08
+ date: 9919-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Joshua Blais/index.md b/exampleSite/content/users/Joshua Blais/index.md
index c4f6c128..32366bfa 100644
--- a/exampleSite/content/users/Joshua Blais/index.md
+++ b/exampleSite/content/users/Joshua Blais/index.md
@@ -2,7 +2,7 @@
title: "Joshua Blais"
tags: [Personal Site,Author,Digital Garden]
externalUrl: "https://joshblais.com/"
- date: 9917-08-08
+ date: 9919-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Joshua Blais/index.zh-cn.md b/exampleSite/content/users/Joshua Blais/index.zh-cn.md
index abd19d89..a16e954e 100644
--- a/exampleSite/content/users/Joshua Blais/index.zh-cn.md
+++ b/exampleSite/content/users/Joshua Blais/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "Joshua Blais"
tags: [个人网站, 作者, 数字花园]
externalUrl: "https://joshblais.com/"
- date: 9917-08-08
+ date: 9919-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/MEM v ENNBEE/feature.jpg b/exampleSite/content/users/MEM v ENNBEE/feature.jpg
index ddecca7c..ff6cbcf6 100644
Binary files a/exampleSite/content/users/MEM v ENNBEE/feature.jpg and b/exampleSite/content/users/MEM v ENNBEE/feature.jpg differ
diff --git a/exampleSite/content/users/MEM v ENNBEE/index.it.md b/exampleSite/content/users/MEM v ENNBEE/index.it.md
index 6854d41a..6fb03cd2 100644
--- a/exampleSite/content/users/MEM v ENNBEE/index.it.md
+++ b/exampleSite/content/users/MEM v ENNBEE/index.it.md
@@ -2,7 +2,7 @@
title: "MEM v ENNBEE"
tags: [Blog sulla tecnologia, Sito personale]
externalUrl: "https://memv.ennbee.uk/"
- date: 9918-08-08
+ date: 9920-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/MEM v ENNBEE/index.ja.md b/exampleSite/content/users/MEM v ENNBEE/index.ja.md
index c9cae687..d309c7cc 100644
--- a/exampleSite/content/users/MEM v ENNBEE/index.ja.md
+++ b/exampleSite/content/users/MEM v ENNBEE/index.ja.md
@@ -2,7 +2,7 @@
title: "MEM v ENNBEE"
tags: [テクノロジーブログ, 個人サイト]
externalUrl: "https://memv.ennbee.uk/"
- date: 9918-08-08
+ date: 9920-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/MEM v ENNBEE/index.md b/exampleSite/content/users/MEM v ENNBEE/index.md
index b2c79a2b..c70416f6 100644
--- a/exampleSite/content/users/MEM v ENNBEE/index.md
+++ b/exampleSite/content/users/MEM v ENNBEE/index.md
@@ -2,7 +2,7 @@
title: "MEM v ENNBEE"
tags: [Technology Blog,Personal site]
externalUrl: "https://memv.ennbee.uk/"
- date: 9918-08-08
+ date: 9920-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/MEM v ENNBEE/index.zh-cn.md b/exampleSite/content/users/MEM v ENNBEE/index.zh-cn.md
index 7c6494a9..7b43475e 100644
--- a/exampleSite/content/users/MEM v ENNBEE/index.zh-cn.md
+++ b/exampleSite/content/users/MEM v ENNBEE/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "MEM v ENNBEE"
tags: [技术博客, 个人网站]
externalUrl: "https://memv.ennbee.uk/"
- date: 9918-08-08
+ date: 9920-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Mare_Infinitus/feature.jpg b/exampleSite/content/users/Mare_Infinitus/feature.jpg
index c942e01f..cae17d7c 100644
Binary files a/exampleSite/content/users/Mare_Infinitus/feature.jpg and b/exampleSite/content/users/Mare_Infinitus/feature.jpg differ
diff --git a/exampleSite/content/users/Mare_Infinitus/index.it.md b/exampleSite/content/users/Mare_Infinitus/index.it.md
index 7347998a..ef333c1c 100644
--- a/exampleSite/content/users/Mare_Infinitus/index.it.md
+++ b/exampleSite/content/users/Mare_Infinitus/index.it.md
@@ -2,7 +2,7 @@
title: "Mare_Infinitus"
tags: [Sito personale, Blog]
externalUrl: "https://lab.imgb.space"
- date: 9925-08-08
+ date: 9927-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Mare_Infinitus/index.ja.md b/exampleSite/content/users/Mare_Infinitus/index.ja.md
index a82cf165..286d1795 100644
--- a/exampleSite/content/users/Mare_Infinitus/index.ja.md
+++ b/exampleSite/content/users/Mare_Infinitus/index.ja.md
@@ -2,7 +2,7 @@
title: "Mare_Infinitus"
tags: [個人サイト, ブログ]
externalUrl: "https://lab.imgb.space"
- date: 9925-08-08
+ date: 9927-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Mare_Infinitus/index.md b/exampleSite/content/users/Mare_Infinitus/index.md
index 059b2564..31f988ec 100644
--- a/exampleSite/content/users/Mare_Infinitus/index.md
+++ b/exampleSite/content/users/Mare_Infinitus/index.md
@@ -2,7 +2,7 @@
title: "Mare_Infinitus"
tags: [Personal Site,Blog]
externalUrl: "https://lab.imgb.space"
- date: 9925-08-08
+ date: 9927-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Mare_Infinitus/index.zh-cn.md b/exampleSite/content/users/Mare_Infinitus/index.zh-cn.md
index d71b248d..7bc85fe8 100644
--- a/exampleSite/content/users/Mare_Infinitus/index.zh-cn.md
+++ b/exampleSite/content/users/Mare_Infinitus/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "Mare_Infinitus"
tags: [个人网站, 博客]
externalUrl: "https://lab.imgb.space"
- date: 9925-08-08
+ date: 9927-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Middle of Nowhere/feature.jpg b/exampleSite/content/users/Middle of Nowhere/feature.jpg
new file mode 100644
index 00000000..1d600f8e
Binary files /dev/null and b/exampleSite/content/users/Middle of Nowhere/feature.jpg differ
diff --git a/exampleSite/content/users/Middle of Nowhere/index.it.md b/exampleSite/content/users/Middle of Nowhere/index.it.md
new file mode 100644
index 00000000..9ec81a68
--- /dev/null
+++ b/exampleSite/content/users/Middle of Nowhere/index.it.md
@@ -0,0 +1,14 @@
+---
+ title: "Middle of Nowhere"
+ tags: [Sito personale, Blog]
+ externalUrl: "https://blog.wtcx.dev/"
+ date: 9917-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
+
diff --git a/exampleSite/content/users/Middle of Nowhere/index.ja.md b/exampleSite/content/users/Middle of Nowhere/index.ja.md
new file mode 100644
index 00000000..9b4888fc
--- /dev/null
+++ b/exampleSite/content/users/Middle of Nowhere/index.ja.md
@@ -0,0 +1,14 @@
+---
+ title: "Middle of Nowhere"
+ tags: [個人サイト, ブログ]
+ externalUrl: "https://blog.wtcx.dev/"
+ date: 9917-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
+
diff --git a/exampleSite/content/users/Middle of Nowhere/index.md b/exampleSite/content/users/Middle of Nowhere/index.md
new file mode 100644
index 00000000..3080f54f
--- /dev/null
+++ b/exampleSite/content/users/Middle of Nowhere/index.md
@@ -0,0 +1,13 @@
+---
+ title: "Middle of Nowhere"
+ tags: [Personal Site,Blog]
+ externalUrl: "https://blog.wtcx.dev/"
+ date: 9917-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
diff --git a/exampleSite/content/users/Middle of Nowhere/index.zh-cn.md b/exampleSite/content/users/Middle of Nowhere/index.zh-cn.md
new file mode 100644
index 00000000..795eceda
--- /dev/null
+++ b/exampleSite/content/users/Middle of Nowhere/index.zh-cn.md
@@ -0,0 +1,14 @@
+---
+ title: "Middle of Nowhere"
+ tags: [个人网站, 博客]
+ externalUrl: "https://blog.wtcx.dev/"
+ date: 9917-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
+
diff --git a/exampleSite/content/users/Synaptic Sugar/index.it.md b/exampleSite/content/users/Synaptic Sugar/index.it.md
index c824b266..f399460f 100644
--- a/exampleSite/content/users/Synaptic Sugar/index.it.md
+++ b/exampleSite/content/users/Synaptic Sugar/index.it.md
@@ -2,7 +2,7 @@
title: "Synaptic Sugar"
tags: [Sviluppatore di videogiochi]
externalUrl: "https://synapticsugar.games"
- date: 9921-08-08
+ date: 9923-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Synaptic Sugar/index.ja.md b/exampleSite/content/users/Synaptic Sugar/index.ja.md
index 8074a652..58717c85 100644
--- a/exampleSite/content/users/Synaptic Sugar/index.ja.md
+++ b/exampleSite/content/users/Synaptic Sugar/index.ja.md
@@ -2,7 +2,7 @@
title: "Synaptic Sugar"
tags: [ビデオゲーム開発者]
externalUrl: "https://synapticsugar.games"
- date: 9921-08-08
+ date: 9923-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Synaptic Sugar/index.md b/exampleSite/content/users/Synaptic Sugar/index.md
index e9e4567c..d17ade05 100644
--- a/exampleSite/content/users/Synaptic Sugar/index.md
+++ b/exampleSite/content/users/Synaptic Sugar/index.md
@@ -2,7 +2,7 @@
title: "Synaptic Sugar"
tags: [Videogame Developer]
externalUrl: "https://synapticsugar.games"
- date: 9921-08-08
+ date: 9923-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Synaptic Sugar/index.zh-cn.md b/exampleSite/content/users/Synaptic Sugar/index.zh-cn.md
index 5a98a1b0..fc0fa460 100644
--- a/exampleSite/content/users/Synaptic Sugar/index.zh-cn.md
+++ b/exampleSite/content/users/Synaptic Sugar/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "Synaptic Sugar"
tags: [视频游戏开发商]
externalUrl: "https://synapticsugar.games"
- date: 9921-08-08
+ date: 9923-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/aakashnand.com/index.it.md b/exampleSite/content/users/aakashnand.com/index.it.md
index 09be3873..d1990402 100644
--- a/exampleSite/content/users/aakashnand.com/index.it.md
+++ b/exampleSite/content/users/aakashnand.com/index.it.md
@@ -2,7 +2,7 @@
title: "aakashnand.com"
tags: [Sito personale]
externalUrl: "https://aakashnand.com/"
- date: 9927-08-08
+ date: 9929-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/aakashnand.com/index.ja.md b/exampleSite/content/users/aakashnand.com/index.ja.md
index a6788ce4..45e195dd 100644
--- a/exampleSite/content/users/aakashnand.com/index.ja.md
+++ b/exampleSite/content/users/aakashnand.com/index.ja.md
@@ -2,7 +2,7 @@
title: "aakashnand.com"
tags: [個人サイト]
externalUrl: "https://aakashnand.com/"
- date: 9927-08-08
+ date: 9929-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/aakashnand.com/index.md b/exampleSite/content/users/aakashnand.com/index.md
index 11ffbdfd..c0cdb711 100644
--- a/exampleSite/content/users/aakashnand.com/index.md
+++ b/exampleSite/content/users/aakashnand.com/index.md
@@ -2,7 +2,7 @@
title: "aakashnand.com"
tags: [Personal site]
externalUrl: "https://aakashnand.com/"
- date: 9927-08-08
+ date: 9929-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/aakashnand.com/index.zh-cn.md b/exampleSite/content/users/aakashnand.com/index.zh-cn.md
index 7eaace8a..efcd2aa5 100644
--- a/exampleSite/content/users/aakashnand.com/index.zh-cn.md
+++ b/exampleSite/content/users/aakashnand.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "aakashnand.com"
tags: [个人网站]
externalUrl: "https://aakashnand.com/"
- date: 9927-08-08
+ date: 9929-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/adilhyz.github.io/index.it.md b/exampleSite/content/users/adilhyz.github.io/index.it.md
index 683f585a..7278fe1e 100644
--- a/exampleSite/content/users/adilhyz.github.io/index.it.md
+++ b/exampleSite/content/users/adilhyz.github.io/index.it.md
@@ -2,7 +2,7 @@
title: "adilhyz.github.io"
tags: [Sito personale]
externalUrl: "https://adilhyz.github.io"
- date: 9947-08-08
+ date: 9948-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/adilhyz.github.io/index.ja.md b/exampleSite/content/users/adilhyz.github.io/index.ja.md
index b39a1ad4..8f68ade6 100644
--- a/exampleSite/content/users/adilhyz.github.io/index.ja.md
+++ b/exampleSite/content/users/adilhyz.github.io/index.ja.md
@@ -2,7 +2,7 @@
title: "adilhyz.github.io"
tags: [個人サイト]
externalUrl: "https://adilhyz.github.io"
- date: 9947-08-08
+ date: 9948-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/adilhyz.github.io/index.md b/exampleSite/content/users/adilhyz.github.io/index.md
index 21913ea6..14386a2b 100644
--- a/exampleSite/content/users/adilhyz.github.io/index.md
+++ b/exampleSite/content/users/adilhyz.github.io/index.md
@@ -2,7 +2,7 @@
title: "adilhyz.github.io"
tags: [Personal site]
externalUrl: "https://adilhyz.github.io"
- date: 9947-08-08
+ date: 9948-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/adilhyz.github.io/index.zh-cn.md b/exampleSite/content/users/adilhyz.github.io/index.zh-cn.md
index 70522d10..34930399 100644
--- a/exampleSite/content/users/adilhyz.github.io/index.zh-cn.md
+++ b/exampleSite/content/users/adilhyz.github.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "adilhyz.github.io"
tags: [个人网站]
externalUrl: "https://adilhyz.github.io"
- date: 9947-08-08
+ date: 9948-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alanctanner.com/index.it.md b/exampleSite/content/users/alanctanner.com/index.it.md
index 76ce90ce..c1a06682 100644
--- a/exampleSite/content/users/alanctanner.com/index.it.md
+++ b/exampleSite/content/users/alanctanner.com/index.it.md
@@ -2,7 +2,7 @@
title: "alanctanner.com"
tags: [Sito personale]
externalUrl: "https://alanctanner.com/"
- date: 9967-08-08
+ date: 9968-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alanctanner.com/index.ja.md b/exampleSite/content/users/alanctanner.com/index.ja.md
index 624f8977..a09d2bc8 100644
--- a/exampleSite/content/users/alanctanner.com/index.ja.md
+++ b/exampleSite/content/users/alanctanner.com/index.ja.md
@@ -2,7 +2,7 @@
title: "alanctanner.com"
tags: [個人サイト]
externalUrl: "https://alanctanner.com/"
- date: 9967-08-08
+ date: 9968-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alanctanner.com/index.md b/exampleSite/content/users/alanctanner.com/index.md
index 2834f2d4..ffcd7fb1 100644
--- a/exampleSite/content/users/alanctanner.com/index.md
+++ b/exampleSite/content/users/alanctanner.com/index.md
@@ -2,7 +2,7 @@
title: "alanctanner.com"
tags: [Personal site]
externalUrl: "https://alanctanner.com/"
- date: 9967-08-08
+ date: 9968-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alanctanner.com/index.zh-cn.md b/exampleSite/content/users/alanctanner.com/index.zh-cn.md
index f4af3d9c..e6726b0a 100644
--- a/exampleSite/content/users/alanctanner.com/index.zh-cn.md
+++ b/exampleSite/content/users/alanctanner.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "alanctanner.com"
tags: [个人网站]
externalUrl: "https://alanctanner.com/"
- date: 9967-08-08
+ date: 9968-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alxhslm.github.io/index.it.md b/exampleSite/content/users/alxhslm.github.io/index.it.md
index 107d05bd..6c37c8e7 100644
--- a/exampleSite/content/users/alxhslm.github.io/index.it.md
+++ b/exampleSite/content/users/alxhslm.github.io/index.it.md
@@ -2,7 +2,7 @@
title: "alxhslm.github.io"
tags: [Sito personale]
externalUrl: "https://alxhslm.github.io/"
- date: 9935-08-08
+ date: 9936-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alxhslm.github.io/index.ja.md b/exampleSite/content/users/alxhslm.github.io/index.ja.md
index 71ae7fdd..e100250e 100644
--- a/exampleSite/content/users/alxhslm.github.io/index.ja.md
+++ b/exampleSite/content/users/alxhslm.github.io/index.ja.md
@@ -2,7 +2,7 @@
title: "alxhslm.github.io"
tags: [個人サイト]
externalUrl: "https://alxhslm.github.io/"
- date: 9935-08-08
+ date: 9936-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alxhslm.github.io/index.md b/exampleSite/content/users/alxhslm.github.io/index.md
index 468ceef8..beb4ffed 100644
--- a/exampleSite/content/users/alxhslm.github.io/index.md
+++ b/exampleSite/content/users/alxhslm.github.io/index.md
@@ -2,7 +2,7 @@
title: "alxhslm.github.io"
tags: [Personal Site]
externalUrl: "https://alxhslm.github.io/"
- date: 9935-08-08
+ date: 9936-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alxhslm.github.io/index.zh-cn.md b/exampleSite/content/users/alxhslm.github.io/index.zh-cn.md
index 65dddbdf..b39fb5fd 100644
--- a/exampleSite/content/users/alxhslm.github.io/index.zh-cn.md
+++ b/exampleSite/content/users/alxhslm.github.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "alxhslm.github.io"
tags: [个人网站]
externalUrl: "https://alxhslm.github.io/"
- date: 9935-08-08
+ date: 9936-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/asterisk.lol/feature.jpg b/exampleSite/content/users/asterisk.lol/feature.jpg
index 16addd26..bad78fdf 100644
Binary files a/exampleSite/content/users/asterisk.lol/feature.jpg and b/exampleSite/content/users/asterisk.lol/feature.jpg differ
diff --git a/exampleSite/content/users/asterisk.lol/index.it.md b/exampleSite/content/users/asterisk.lol/index.it.md
index 1fe5e31b..1125d16d 100644
--- a/exampleSite/content/users/asterisk.lol/index.it.md
+++ b/exampleSite/content/users/asterisk.lol/index.it.md
@@ -2,7 +2,7 @@
title: "asterisk.lol"
tags: [Blog, Sito personale]
externalUrl: "https://asterisk.lol"
- date: 9931-08-08
+ date: 9933-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/asterisk.lol/index.ja.md b/exampleSite/content/users/asterisk.lol/index.ja.md
index 38313615..96d47538 100644
--- a/exampleSite/content/users/asterisk.lol/index.ja.md
+++ b/exampleSite/content/users/asterisk.lol/index.ja.md
@@ -2,7 +2,7 @@
title: "asterisk.lol"
tags: [ブログ, 個人サイト]
externalUrl: "https://asterisk.lol"
- date: 9931-08-08
+ date: 9933-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/asterisk.lol/index.md b/exampleSite/content/users/asterisk.lol/index.md
index 758e62e1..0a318cf1 100644
--- a/exampleSite/content/users/asterisk.lol/index.md
+++ b/exampleSite/content/users/asterisk.lol/index.md
@@ -2,7 +2,7 @@
title: "asterisk.lol"
tags: [Blog,Personal Site]
externalUrl: "https://asterisk.lol"
- date: 9931-08-08
+ date: 9933-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/asterisk.lol/index.zh-cn.md b/exampleSite/content/users/asterisk.lol/index.zh-cn.md
index 4e2562e7..8da365d3 100644
--- a/exampleSite/content/users/asterisk.lol/index.zh-cn.md
+++ b/exampleSite/content/users/asterisk.lol/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "asterisk.lol"
tags: [博客, 个人网站]
externalUrl: "https://asterisk.lol"
- date: 9931-08-08
+ date: 9933-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/bbagwang.com/feature.jpg b/exampleSite/content/users/bbagwang.com/feature.jpg
index 61532f11..fcbd8729 100644
Binary files a/exampleSite/content/users/bbagwang.com/feature.jpg and b/exampleSite/content/users/bbagwang.com/feature.jpg differ
diff --git a/exampleSite/content/users/bbagwang.com/index.it.md b/exampleSite/content/users/bbagwang.com/index.it.md
index 271b5980..bc238ee1 100644
--- a/exampleSite/content/users/bbagwang.com/index.it.md
+++ b/exampleSite/content/users/bbagwang.com/index.it.md
@@ -2,7 +2,7 @@
title: "bbagwang.com"
tags: [Sito personale]
externalUrl: "https://bbagwang.com"
- date: 9953-08-08
+ date: 9954-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/bbagwang.com/index.ja.md b/exampleSite/content/users/bbagwang.com/index.ja.md
index ffa19269..734a21af 100644
--- a/exampleSite/content/users/bbagwang.com/index.ja.md
+++ b/exampleSite/content/users/bbagwang.com/index.ja.md
@@ -2,7 +2,7 @@
title: "bbagwang.com"
tags: [個人サイト]
externalUrl: "https://bbagwang.com"
- date: 9953-08-08
+ date: 9954-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/bbagwang.com/index.md b/exampleSite/content/users/bbagwang.com/index.md
index 3292d0b3..42de2786 100644
--- a/exampleSite/content/users/bbagwang.com/index.md
+++ b/exampleSite/content/users/bbagwang.com/index.md
@@ -2,7 +2,7 @@
title: "bbagwang.com"
tags: [Personal site]
externalUrl: "https://bbagwang.com"
- date: 9953-08-08
+ date: 9954-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/bbagwang.com/index.zh-cn.md b/exampleSite/content/users/bbagwang.com/index.zh-cn.md
index da05716a..67f25dff 100644
--- a/exampleSite/content/users/bbagwang.com/index.zh-cn.md
+++ b/exampleSite/content/users/bbagwang.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "bbagwang.com"
tags: [个人网站]
externalUrl: "https://bbagwang.com"
- date: 9953-08-08
+ date: 9954-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.enmanuelmoreira.com/feature.jpg b/exampleSite/content/users/blog.enmanuelmoreira.com/feature.jpg
index 97179578..041a6cac 100644
Binary files a/exampleSite/content/users/blog.enmanuelmoreira.com/feature.jpg and b/exampleSite/content/users/blog.enmanuelmoreira.com/feature.jpg differ
diff --git a/exampleSite/content/users/blog.enmanuelmoreira.com/index.it.md b/exampleSite/content/users/blog.enmanuelmoreira.com/index.it.md
index fd3cf3ae..2ab6e4ed 100644
--- a/exampleSite/content/users/blog.enmanuelmoreira.com/index.it.md
+++ b/exampleSite/content/users/blog.enmanuelmoreira.com/index.it.md
@@ -2,7 +2,7 @@
title: "blog.enmanuelmoreira.com"
tags: [Sito personale]
externalUrl: "https://blog.enmanuelmoreira.com"
- date: 9961-08-08
+ date: 9962-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.enmanuelmoreira.com/index.ja.md b/exampleSite/content/users/blog.enmanuelmoreira.com/index.ja.md
index eede97c1..e5dad50b 100644
--- a/exampleSite/content/users/blog.enmanuelmoreira.com/index.ja.md
+++ b/exampleSite/content/users/blog.enmanuelmoreira.com/index.ja.md
@@ -2,7 +2,7 @@
title: "blog.enmanuelmoreira.com"
tags: [個人サイト]
externalUrl: "https://blog.enmanuelmoreira.com"
- date: 9961-08-08
+ date: 9962-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.enmanuelmoreira.com/index.md b/exampleSite/content/users/blog.enmanuelmoreira.com/index.md
index 2325933f..110143b1 100644
--- a/exampleSite/content/users/blog.enmanuelmoreira.com/index.md
+++ b/exampleSite/content/users/blog.enmanuelmoreira.com/index.md
@@ -2,7 +2,7 @@
title: "blog.enmanuelmoreira.com"
tags: [Personal site]
externalUrl: "https://blog.enmanuelmoreira.com"
- date: 9961-08-08
+ date: 9962-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.enmanuelmoreira.com/index.zh-cn.md b/exampleSite/content/users/blog.enmanuelmoreira.com/index.zh-cn.md
index 6be85e54..0fd77045 100644
--- a/exampleSite/content/users/blog.enmanuelmoreira.com/index.zh-cn.md
+++ b/exampleSite/content/users/blog.enmanuelmoreira.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "blog.enmanuelmoreira.com"
tags: [个人网站]
externalUrl: "https://blog.enmanuelmoreira.com"
- date: 9961-08-08
+ date: 9962-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.muffn.io/feature.jpg b/exampleSite/content/users/blog.muffn.io/feature.jpg
index 3e98c058..bfb1e323 100644
Binary files a/exampleSite/content/users/blog.muffn.io/feature.jpg and b/exampleSite/content/users/blog.muffn.io/feature.jpg differ
diff --git a/exampleSite/content/users/blog.stonegarden.dev/feature.jpg b/exampleSite/content/users/blog.stonegarden.dev/feature.jpg
index 1a9eb946..10e6d3d1 100644
Binary files a/exampleSite/content/users/blog.stonegarden.dev/feature.jpg and b/exampleSite/content/users/blog.stonegarden.dev/feature.jpg differ
diff --git a/exampleSite/content/users/blog.stonegarden.dev/index.it.md b/exampleSite/content/users/blog.stonegarden.dev/index.it.md
index 02fdb133..ed7d079d 100644
--- a/exampleSite/content/users/blog.stonegarden.dev/index.it.md
+++ b/exampleSite/content/users/blog.stonegarden.dev/index.it.md
@@ -2,7 +2,7 @@
title: "blog.stonegarden.dev"
tags: [Sito personale]
externalUrl: "https://blog.stonegarden.dev/"
- date: 9939-08-08
+ date: 9940-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.stonegarden.dev/index.ja.md b/exampleSite/content/users/blog.stonegarden.dev/index.ja.md
index daa8fa6f..569c9159 100644
--- a/exampleSite/content/users/blog.stonegarden.dev/index.ja.md
+++ b/exampleSite/content/users/blog.stonegarden.dev/index.ja.md
@@ -2,7 +2,7 @@
title: "blog.stonegarden.dev"
tags: [個人サイト]
externalUrl: "https://blog.stonegarden.dev/"
- date: 9939-08-08
+ date: 9940-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.stonegarden.dev/index.md b/exampleSite/content/users/blog.stonegarden.dev/index.md
index d4baf8a9..33da699d 100644
--- a/exampleSite/content/users/blog.stonegarden.dev/index.md
+++ b/exampleSite/content/users/blog.stonegarden.dev/index.md
@@ -2,7 +2,7 @@
title: "blog.stonegarden.dev"
tags: [Personal Site]
externalUrl: "https://blog.stonegarden.dev/"
- date: 9939-08-08
+ date: 9940-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.stonegarden.dev/index.zh-cn.md b/exampleSite/content/users/blog.stonegarden.dev/index.zh-cn.md
index 1203d1cd..60583054 100644
--- a/exampleSite/content/users/blog.stonegarden.dev/index.zh-cn.md
+++ b/exampleSite/content/users/blog.stonegarden.dev/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "blog.stonegarden.dev"
tags: [个人网站]
externalUrl: "https://blog.stonegarden.dev/"
- date: 9939-08-08
+ date: 9940-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/brendanwallace.github.io/feature.jpg b/exampleSite/content/users/brendanwallace.github.io/feature.jpg
index 460af0f8..c2a17126 100644
Binary files a/exampleSite/content/users/brendanwallace.github.io/feature.jpg and b/exampleSite/content/users/brendanwallace.github.io/feature.jpg differ
diff --git a/exampleSite/content/users/clemsau.com/index.it.md b/exampleSite/content/users/clemsau.com/index.it.md
index 99daf2cb..12c2e742 100644
--- a/exampleSite/content/users/clemsau.com/index.it.md
+++ b/exampleSite/content/users/clemsau.com/index.it.md
@@ -2,7 +2,7 @@
title: "clemsau.com"
tags: [Sito personale]
externalUrl: "https://clemsau.com/"
- date: 9965-08-08
+ date: 9966-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/clemsau.com/index.ja.md b/exampleSite/content/users/clemsau.com/index.ja.md
index 1989ddbf..42c7cb57 100644
--- a/exampleSite/content/users/clemsau.com/index.ja.md
+++ b/exampleSite/content/users/clemsau.com/index.ja.md
@@ -2,7 +2,7 @@
title: "clemsau.com"
tags: [個人サイト]
externalUrl: "https://clemsau.com/"
- date: 9965-08-08
+ date: 9966-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/clemsau.com/index.md b/exampleSite/content/users/clemsau.com/index.md
index 11b69727..f688c2c1 100644
--- a/exampleSite/content/users/clemsau.com/index.md
+++ b/exampleSite/content/users/clemsau.com/index.md
@@ -2,7 +2,7 @@
title: "clemsau.com"
tags: [Personal site]
externalUrl: "https://clemsau.com/"
- date: 9965-08-08
+ date: 9966-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/clemsau.com/index.zh-cn.md b/exampleSite/content/users/clemsau.com/index.zh-cn.md
index 19b2dcfe..b8dcd5db 100644
--- a/exampleSite/content/users/clemsau.com/index.zh-cn.md
+++ b/exampleSite/content/users/clemsau.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "clemsau.com"
tags: [个人网站]
externalUrl: "https://clemsau.com/"
- date: 9965-08-08
+ date: 9966-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/code-chimp.com/feature.jpg b/exampleSite/content/users/code-chimp.com/feature.jpg
index bd85dda2..873ff454 100644
Binary files a/exampleSite/content/users/code-chimp.com/feature.jpg and b/exampleSite/content/users/code-chimp.com/feature.jpg differ
diff --git a/exampleSite/content/users/deepumohan.com-tech/index.it.md b/exampleSite/content/users/deepumohan.com-tech/index.it.md
index 2508d3ff..9eeb2428 100644
--- a/exampleSite/content/users/deepumohan.com-tech/index.it.md
+++ b/exampleSite/content/users/deepumohan.com-tech/index.it.md
@@ -2,7 +2,7 @@
title: "deepumohan.com/tech"
tags: [Blog sulla tecnologia]
externalUrl: "https://deepumohan.com/tech/"
- date: 9944-08-08
+ date: 9945-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/deepumohan.com-tech/index.ja.md b/exampleSite/content/users/deepumohan.com-tech/index.ja.md
index 3fedd55a..ed95e5b3 100644
--- a/exampleSite/content/users/deepumohan.com-tech/index.ja.md
+++ b/exampleSite/content/users/deepumohan.com-tech/index.ja.md
@@ -2,7 +2,7 @@
title: "deepumohan.com/tech"
tags: [テクノロジーブログ]
externalUrl: "https://deepumohan.com/tech/"
- date: 9944-08-08
+ date: 9945-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/deepumohan.com-tech/index.md b/exampleSite/content/users/deepumohan.com-tech/index.md
index 77cc661f..192ab647 100644
--- a/exampleSite/content/users/deepumohan.com-tech/index.md
+++ b/exampleSite/content/users/deepumohan.com-tech/index.md
@@ -2,7 +2,7 @@
title: "deepumohan.com/tech"
tags: [Technology Blog]
externalUrl: "https://deepumohan.com/tech/"
- date: 9944-08-08
+ date: 9945-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/deepumohan.com-tech/index.zh-cn.md b/exampleSite/content/users/deepumohan.com-tech/index.zh-cn.md
index b329514b..adcac340 100644
--- a/exampleSite/content/users/deepumohan.com-tech/index.zh-cn.md
+++ b/exampleSite/content/users/deepumohan.com-tech/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "deepumohan.com/tech"
tags: [技术博客]
externalUrl: "https://deepumohan.com/tech/"
- date: 9944-08-08
+ date: 9945-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/dizzytech.de/feature.jpg b/exampleSite/content/users/dizzytech.de/feature.jpg
index e2ec4cb6..9109b2c7 100644
Binary files a/exampleSite/content/users/dizzytech.de/feature.jpg and b/exampleSite/content/users/dizzytech.de/feature.jpg differ
diff --git a/exampleSite/content/users/eallion.com/feature.jpg b/exampleSite/content/users/eallion.com/feature.jpg
index 5b35aa5b..28cf5061 100644
Binary files a/exampleSite/content/users/eallion.com/feature.jpg and b/exampleSite/content/users/eallion.com/feature.jpg differ
diff --git a/exampleSite/content/users/eallion.com/index.it.md b/exampleSite/content/users/eallion.com/index.it.md
index d65c7e62..6b931311 100644
--- a/exampleSite/content/users/eallion.com/index.it.md
+++ b/exampleSite/content/users/eallion.com/index.it.md
@@ -2,7 +2,7 @@
title: "eallion.com"
tags: [Blog, Sito personale]
externalUrl: "http://www.eallion.com/"
- date: 9922-08-08
+ date: 9924-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/eallion.com/index.ja.md b/exampleSite/content/users/eallion.com/index.ja.md
index f93464ab..2acf9de5 100644
--- a/exampleSite/content/users/eallion.com/index.ja.md
+++ b/exampleSite/content/users/eallion.com/index.ja.md
@@ -2,7 +2,7 @@
title: "eallion.com"
tags: [ブログ, 個人サイト]
externalUrl: "http://www.eallion.com/"
- date: 9922-08-08
+ date: 9924-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/eallion.com/index.md b/exampleSite/content/users/eallion.com/index.md
index f9bbb1f1..9cc4a3ee 100644
--- a/exampleSite/content/users/eallion.com/index.md
+++ b/exampleSite/content/users/eallion.com/index.md
@@ -2,7 +2,7 @@
title: "eallion.com"
tags: [Blog,Personal Site]
externalUrl: "http://www.eallion.com/"
- date: 9922-08-08
+ date: 9924-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/eallion.com/index.zh-cn.md b/exampleSite/content/users/eallion.com/index.zh-cn.md
index b12db004..ab649356 100644
--- a/exampleSite/content/users/eallion.com/index.zh-cn.md
+++ b/exampleSite/content/users/eallion.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "eallion.com"
tags: [博客, 个人网站]
externalUrl: "http://www.eallion.com/"
- date: 9922-08-08
+ date: 9924-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ekwska.com/index.it.md b/exampleSite/content/users/ekwska.com/index.it.md
index 319698ee..92d8bae6 100644
--- a/exampleSite/content/users/ekwska.com/index.it.md
+++ b/exampleSite/content/users/ekwska.com/index.it.md
@@ -2,7 +2,7 @@
title: "ekwska.com"
tags: [Blog personale]
externalUrl: "https://ekwska.com"
- date: 9929-08-08
+ date: 9931-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ekwska.com/index.ja.md b/exampleSite/content/users/ekwska.com/index.ja.md
index 9a21e4ac..4349e2ae 100644
--- a/exampleSite/content/users/ekwska.com/index.ja.md
+++ b/exampleSite/content/users/ekwska.com/index.ja.md
@@ -2,7 +2,7 @@
title: "ekwska.com"
tags: [個人ブログ]
externalUrl: "https://ekwska.com"
- date: 9929-08-08
+ date: 9931-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ekwska.com/index.md b/exampleSite/content/users/ekwska.com/index.md
index c3936540..a777dc59 100644
--- a/exampleSite/content/users/ekwska.com/index.md
+++ b/exampleSite/content/users/ekwska.com/index.md
@@ -2,7 +2,7 @@
title: "ekwska.com"
tags: [Personal blog]
externalUrl: "https://ekwska.com"
- date: 9929-08-08
+ date: 9931-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ekwska.com/index.zh-cn.md b/exampleSite/content/users/ekwska.com/index.zh-cn.md
index 47919788..3cbd6b4e 100644
--- a/exampleSite/content/users/ekwska.com/index.zh-cn.md
+++ b/exampleSite/content/users/ekwska.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "ekwska.com"
tags: [个人博客]
externalUrl: "https://ekwska.com"
- date: 9929-08-08
+ date: 9931-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/fugugames.com/index.it.md b/exampleSite/content/users/fugugames.com/index.it.md
index 16bcbd4e..eeb23ec0 100644
--- a/exampleSite/content/users/fugugames.com/index.it.md
+++ b/exampleSite/content/users/fugugames.com/index.it.md
@@ -2,7 +2,7 @@
title: "fugugames.com"
tags: [Sito di giochi]
externalUrl: "https://fugugames.com/"
- date: 9970-08-08
+ date: 9971-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/fugugames.com/index.ja.md b/exampleSite/content/users/fugugames.com/index.ja.md
index ae284ee9..69c9aa39 100644
--- a/exampleSite/content/users/fugugames.com/index.ja.md
+++ b/exampleSite/content/users/fugugames.com/index.ja.md
@@ -2,7 +2,7 @@
title: "fugugames.com"
tags: [ゲームサイト]
externalUrl: "https://fugugames.com/"
- date: 9970-08-08
+ date: 9971-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/fugugames.com/index.md b/exampleSite/content/users/fugugames.com/index.md
index 391b18c1..cf16c91c 100644
--- a/exampleSite/content/users/fugugames.com/index.md
+++ b/exampleSite/content/users/fugugames.com/index.md
@@ -2,7 +2,7 @@
title: "fugugames.com"
tags: [Games site]
externalUrl: "https://fugugames.com/"
- date: 9970-08-08
+ date: 9971-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/fugugames.com/index.zh-cn.md b/exampleSite/content/users/fugugames.com/index.zh-cn.md
index d9214b74..704909d8 100644
--- a/exampleSite/content/users/fugugames.com/index.zh-cn.md
+++ b/exampleSite/content/users/fugugames.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "fugugames.com"
tags: [游戏网站]
externalUrl: "https://fugugames.com/"
- date: 9970-08-08
+ date: 9971-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/georgiancodeclub.github.io/feature.jpg b/exampleSite/content/users/georgiancodeclub.github.io/feature.jpg
index 99d4c571..8e88a022 100644
Binary files a/exampleSite/content/users/georgiancodeclub.github.io/feature.jpg and b/exampleSite/content/users/georgiancodeclub.github.io/feature.jpg differ
diff --git a/exampleSite/content/users/gma.name/index.it.md b/exampleSite/content/users/gma.name/index.it.md
index e12e8748..4252ca5d 100644
--- a/exampleSite/content/users/gma.name/index.it.md
+++ b/exampleSite/content/users/gma.name/index.it.md
@@ -2,7 +2,7 @@
title: "gma.name"
tags: [Sito personale]
externalUrl: "https://gma.name"
- date: 9950-08-08
+ date: 9951-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/gma.name/index.ja.md b/exampleSite/content/users/gma.name/index.ja.md
index 36fa6850..420be4b5 100644
--- a/exampleSite/content/users/gma.name/index.ja.md
+++ b/exampleSite/content/users/gma.name/index.ja.md
@@ -2,7 +2,7 @@
title: "gma.name"
tags: [個人サイト]
externalUrl: "https://gma.name"
- date: 9950-08-08
+ date: 9951-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/gma.name/index.md b/exampleSite/content/users/gma.name/index.md
index e5bf4f82..cf655f0e 100644
--- a/exampleSite/content/users/gma.name/index.md
+++ b/exampleSite/content/users/gma.name/index.md
@@ -2,7 +2,7 @@
title: "gma.name"
tags: [Personal site]
externalUrl: "https://gma.name"
- date: 9950-08-08
+ date: 9951-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/gma.name/index.zh-cn.md b/exampleSite/content/users/gma.name/index.zh-cn.md
index d9f48a8b..8adf0f69 100644
--- a/exampleSite/content/users/gma.name/index.zh-cn.md
+++ b/exampleSite/content/users/gma.name/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "gma.name"
tags: [个人网站]
externalUrl: "https://gma.name"
- date: 9950-08-08
+ date: 9951-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/halcyonstraits.com/index.it.md b/exampleSite/content/users/halcyonstraits.com/index.it.md
index 605760f4..a7ad9980 100644
--- a/exampleSite/content/users/halcyonstraits.com/index.it.md
+++ b/exampleSite/content/users/halcyonstraits.com/index.it.md
@@ -2,7 +2,7 @@
title: "halcyonstraits.com"
tags: [Fotografia di bambole]
externalUrl: "https://www.halcyonstraits.com/"
- date: 9960-08-08
+ date: 9961-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/halcyonstraits.com/index.ja.md b/exampleSite/content/users/halcyonstraits.com/index.ja.md
index 7ee23800..038d0a0a 100644
--- a/exampleSite/content/users/halcyonstraits.com/index.ja.md
+++ b/exampleSite/content/users/halcyonstraits.com/index.ja.md
@@ -2,7 +2,7 @@
title: "halcyonstraits.com"
tags: [人形撮影]
externalUrl: "https://www.halcyonstraits.com/"
- date: 9960-08-08
+ date: 9961-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/halcyonstraits.com/index.md b/exampleSite/content/users/halcyonstraits.com/index.md
index 84e36183..9455b910 100644
--- a/exampleSite/content/users/halcyonstraits.com/index.md
+++ b/exampleSite/content/users/halcyonstraits.com/index.md
@@ -2,7 +2,7 @@
title: "halcyonstraits.com"
tags: [Doll photography]
externalUrl: "https://www.halcyonstraits.com/"
- date: 9960-08-08
+ date: 9961-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/halcyonstraits.com/index.zh-cn.md b/exampleSite/content/users/halcyonstraits.com/index.zh-cn.md
index 17d099f7..32a9768a 100644
--- a/exampleSite/content/users/halcyonstraits.com/index.zh-cn.md
+++ b/exampleSite/content/users/halcyonstraits.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "halcyonstraits.com"
tags: [娃娃摄影]
externalUrl: "https://www.halcyonstraits.com/"
- date: 9960-08-08
+ date: 9961-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/hyperbowl3d.com/index.it.md b/exampleSite/content/users/hyperbowl3d.com/index.it.md
index 41e9843b..10c89a48 100644
--- a/exampleSite/content/users/hyperbowl3d.com/index.it.md
+++ b/exampleSite/content/users/hyperbowl3d.com/index.it.md
@@ -1,8 +1,8 @@
---
title: "hyperbowl3d.com"
- tags: [Sito di gioco]
+ tags: [Sito di giochi]
externalUrl: "https://hyperbowl3d.com/"
- date: 9969-08-08
+ date: 9970-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/hyperbowl3d.com/index.ja.md b/exampleSite/content/users/hyperbowl3d.com/index.ja.md
index bd7d729b..10e6ca9a 100644
--- a/exampleSite/content/users/hyperbowl3d.com/index.ja.md
+++ b/exampleSite/content/users/hyperbowl3d.com/index.ja.md
@@ -2,7 +2,7 @@
title: "hyperbowl3d.com"
tags: [ゲームサイト]
externalUrl: "https://hyperbowl3d.com/"
- date: 9969-08-08
+ date: 9970-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/hyperbowl3d.com/index.md b/exampleSite/content/users/hyperbowl3d.com/index.md
index 95120c52..dad0a225 100644
--- a/exampleSite/content/users/hyperbowl3d.com/index.md
+++ b/exampleSite/content/users/hyperbowl3d.com/index.md
@@ -2,7 +2,7 @@
title: "hyperbowl3d.com"
tags: [Game site]
externalUrl: "https://hyperbowl3d.com/"
- date: 9969-08-08
+ date: 9970-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/hyperbowl3d.com/index.zh-cn.md b/exampleSite/content/users/hyperbowl3d.com/index.zh-cn.md
index a7683e50..1d6e74f4 100644
--- a/exampleSite/content/users/hyperbowl3d.com/index.zh-cn.md
+++ b/exampleSite/content/users/hyperbowl3d.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "hyperbowl3d.com"
tags: [游戏现场]
externalUrl: "https://hyperbowl3d.com/"
- date: 9969-08-08
+ date: 9970-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/innerknowing/index.it.md b/exampleSite/content/users/innerknowing/index.it.md
index f984832b..360ee082 100644
--- a/exampleSite/content/users/innerknowing/index.it.md
+++ b/exampleSite/content/users/innerknowing/index.it.md
@@ -2,7 +2,7 @@
title: "innerknowing"
tags: [Sito personale, Modellatore]
externalUrl: "https://innerknowing.xyz/en/"
- date: 9926-08-08
+ date: 9928-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/innerknowing/index.ja.md b/exampleSite/content/users/innerknowing/index.ja.md
index 8b47202b..afc3d7a0 100644
--- a/exampleSite/content/users/innerknowing/index.ja.md
+++ b/exampleSite/content/users/innerknowing/index.ja.md
@@ -2,7 +2,7 @@
title: "innerknowing"
tags: [個人サイト, モデラー]
externalUrl: "https://innerknowing.xyz/en/"
- date: 9926-08-08
+ date: 9928-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/innerknowing/index.md b/exampleSite/content/users/innerknowing/index.md
index 96ea8807..9907c7c2 100644
--- a/exampleSite/content/users/innerknowing/index.md
+++ b/exampleSite/content/users/innerknowing/index.md
@@ -2,7 +2,7 @@
title: "innerknowing"
tags: [Personal site,Modeller]
externalUrl: "https://innerknowing.xyz/en/"
- date: 9926-08-08
+ date: 9928-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/innerknowing/index.zh-cn.md b/exampleSite/content/users/innerknowing/index.zh-cn.md
index bd6f6197..e5ad984e 100644
--- a/exampleSite/content/users/innerknowing/index.zh-cn.md
+++ b/exampleSite/content/users/innerknowing/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "innerknowing"
tags: [个人网站, 建模师]
externalUrl: "https://innerknowing.xyz/en/"
- date: 9926-08-08
+ date: 9928-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jam.dsg.li/feature.jpg b/exampleSite/content/users/jam.dsg.li/feature.jpg
index 19f89f7c..247598c6 100644
Binary files a/exampleSite/content/users/jam.dsg.li/feature.jpg and b/exampleSite/content/users/jam.dsg.li/feature.jpg differ
diff --git a/exampleSite/content/users/jamiemoxon.tech/index.it.md b/exampleSite/content/users/jamiemoxon.tech/index.it.md
index 665c08ee..67711de1 100644
--- a/exampleSite/content/users/jamiemoxon.tech/index.it.md
+++ b/exampleSite/content/users/jamiemoxon.tech/index.it.md
@@ -2,7 +2,7 @@
title: "jamiemoxon.tech"
tags: [Sito personale]
externalUrl: "https://jamiemoxon.tech"
- date: 9952-08-08
+ date: 9953-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jamiemoxon.tech/index.ja.md b/exampleSite/content/users/jamiemoxon.tech/index.ja.md
index db2a3502..f0e66337 100644
--- a/exampleSite/content/users/jamiemoxon.tech/index.ja.md
+++ b/exampleSite/content/users/jamiemoxon.tech/index.ja.md
@@ -2,7 +2,7 @@
title: "jamiemoxon.tech"
tags: [個人サイト]
externalUrl: "https://jamiemoxon.tech"
- date: 9952-08-08
+ date: 9953-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jamiemoxon.tech/index.md b/exampleSite/content/users/jamiemoxon.tech/index.md
index 98ae2dbb..0c0b0844 100644
--- a/exampleSite/content/users/jamiemoxon.tech/index.md
+++ b/exampleSite/content/users/jamiemoxon.tech/index.md
@@ -2,7 +2,7 @@
title: "jamiemoxon.tech"
tags: [Personal site]
externalUrl: "https://jamiemoxon.tech"
- date: 9952-08-08
+ date: 9953-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jamiemoxon.tech/index.zh-cn.md b/exampleSite/content/users/jamiemoxon.tech/index.zh-cn.md
index 9248d494..41b719e9 100644
--- a/exampleSite/content/users/jamiemoxon.tech/index.zh-cn.md
+++ b/exampleSite/content/users/jamiemoxon.tech/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "jamiemoxon.tech"
tags: [个人网站]
externalUrl: "https://jamiemoxon.tech"
- date: 9952-08-08
+ date: 9953-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/joush007.github.io/index.it.md b/exampleSite/content/users/joush007.github.io/index.it.md
index 74309193..26961e56 100644
--- a/exampleSite/content/users/joush007.github.io/index.it.md
+++ b/exampleSite/content/users/joush007.github.io/index.it.md
@@ -2,7 +2,7 @@
title: "joush007.github.io"
tags: [Sito personale]
externalUrl: "https://joush007.github.io"
- date: 9942-08-08
+ date: 9943-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/joush007.github.io/index.ja.md b/exampleSite/content/users/joush007.github.io/index.ja.md
index d4dcb005..3b9bfd50 100644
--- a/exampleSite/content/users/joush007.github.io/index.ja.md
+++ b/exampleSite/content/users/joush007.github.io/index.ja.md
@@ -2,7 +2,7 @@
title: "joush007.github.io"
tags: [個人サイト]
externalUrl: "https://joush007.github.io"
- date: 9942-08-08
+ date: 9943-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/joush007.github.io/index.md b/exampleSite/content/users/joush007.github.io/index.md
index 84fcf0c4..28af009c 100644
--- a/exampleSite/content/users/joush007.github.io/index.md
+++ b/exampleSite/content/users/joush007.github.io/index.md
@@ -2,7 +2,7 @@
title: "joush007.github.io"
tags: [Personal Site]
externalUrl: "https://joush007.github.io"
- date: 9942-08-08
+ date: 9943-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/joush007.github.io/index.zh-cn.md b/exampleSite/content/users/joush007.github.io/index.zh-cn.md
index a405d75b..6a56632e 100644
--- a/exampleSite/content/users/joush007.github.io/index.zh-cn.md
+++ b/exampleSite/content/users/joush007.github.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "joush007.github.io"
tags: [个人网站]
externalUrl: "https://joush007.github.io"
- date: 9942-08-08
+ date: 9943-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jundimubarok.com/feature.jpg b/exampleSite/content/users/jundimubarok.com/feature.jpg
index e276767b..d254ce6a 100644
Binary files a/exampleSite/content/users/jundimubarok.com/feature.jpg and b/exampleSite/content/users/jundimubarok.com/feature.jpg differ
diff --git a/exampleSite/content/users/jundimubarok.com/index.it.md b/exampleSite/content/users/jundimubarok.com/index.it.md
index d2bc0647..249b48d1 100644
--- a/exampleSite/content/users/jundimubarok.com/index.it.md
+++ b/exampleSite/content/users/jundimubarok.com/index.it.md
@@ -2,7 +2,7 @@
title: "jundimubarok.com"
tags: [Sito personale]
externalUrl: "https://jundimubarok.com/"
- date: 9955-08-08
+ date: 9956-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jundimubarok.com/index.ja.md b/exampleSite/content/users/jundimubarok.com/index.ja.md
index e3e579ff..6fa47702 100644
--- a/exampleSite/content/users/jundimubarok.com/index.ja.md
+++ b/exampleSite/content/users/jundimubarok.com/index.ja.md
@@ -2,7 +2,7 @@
title: "jundimubarok.com"
tags: [個人サイト]
externalUrl: "https://jundimubarok.com/"
- date: 9955-08-08
+ date: 9956-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jundimubarok.com/index.md b/exampleSite/content/users/jundimubarok.com/index.md
index 2b68fb13..c8d085c5 100644
--- a/exampleSite/content/users/jundimubarok.com/index.md
+++ b/exampleSite/content/users/jundimubarok.com/index.md
@@ -2,7 +2,7 @@
title: "jundimubarok.com"
tags: [Personal site]
externalUrl: "https://jundimubarok.com/"
- date: 9955-08-08
+ date: 9956-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jundimubarok.com/index.zh-cn.md b/exampleSite/content/users/jundimubarok.com/index.zh-cn.md
index d999d5e6..9bf86464 100644
--- a/exampleSite/content/users/jundimubarok.com/index.zh-cn.md
+++ b/exampleSite/content/users/jundimubarok.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "jundimubarok.com"
tags: [个人网站]
externalUrl: "https://jundimubarok.com/"
- date: 9955-08-08
+ date: 9956-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/karlukle.site/feature.jpg b/exampleSite/content/users/karlukle.site/feature.jpg
index b56ead08..68e0cdd5 100644
Binary files a/exampleSite/content/users/karlukle.site/feature.jpg and b/exampleSite/content/users/karlukle.site/feature.jpg differ
diff --git a/exampleSite/content/users/karlukle.site/index.it.md b/exampleSite/content/users/karlukle.site/index.it.md
index 97cdbe58..dab45081 100644
--- a/exampleSite/content/users/karlukle.site/index.it.md
+++ b/exampleSite/content/users/karlukle.site/index.it.md
@@ -2,7 +2,7 @@
title: "karlukle.site"
tags: [Blog personale]
externalUrl: "https://karlukle.site"
- date: 9924-08-08
+ date: 9926-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/karlukle.site/index.ja.md b/exampleSite/content/users/karlukle.site/index.ja.md
index 7487e58c..92c108a5 100644
--- a/exampleSite/content/users/karlukle.site/index.ja.md
+++ b/exampleSite/content/users/karlukle.site/index.ja.md
@@ -2,7 +2,7 @@
title: "karlukle.site"
tags: [個人ブログ]
externalUrl: "https://karlukle.site"
- date: 9924-08-08
+ date: 9926-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/karlukle.site/index.md b/exampleSite/content/users/karlukle.site/index.md
index bd88008a..faeaac64 100644
--- a/exampleSite/content/users/karlukle.site/index.md
+++ b/exampleSite/content/users/karlukle.site/index.md
@@ -2,7 +2,7 @@
title: "karlukle.site"
tags: [Personal blog]
externalUrl: "https://karlukle.site"
- date: 9924-08-08
+ date: 9926-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/karlukle.site/index.zh-cn.md b/exampleSite/content/users/karlukle.site/index.zh-cn.md
index 335c0e2a..071dd7b5 100644
--- a/exampleSite/content/users/karlukle.site/index.zh-cn.md
+++ b/exampleSite/content/users/karlukle.site/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "karlukle.site"
tags: [个人博客]
externalUrl: "https://karlukle.site"
- date: 9924-08-08
+ date: 9926-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/kylemalloy.com/index.it.md b/exampleSite/content/users/kylemalloy.com/index.it.md
index 71275f6f..10060c9a 100644
--- a/exampleSite/content/users/kylemalloy.com/index.it.md
+++ b/exampleSite/content/users/kylemalloy.com/index.it.md
@@ -2,7 +2,7 @@
title: "kylemalloy.com"
tags: [Sito personale]
externalUrl: "https://kylemalloy.com"
- date: 9943-08-08
+ date: 9944-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/kylemalloy.com/index.ja.md b/exampleSite/content/users/kylemalloy.com/index.ja.md
index ced76855..e7b1aab7 100644
--- a/exampleSite/content/users/kylemalloy.com/index.ja.md
+++ b/exampleSite/content/users/kylemalloy.com/index.ja.md
@@ -2,7 +2,7 @@
title: "kylemalloy.com"
tags: [個人サイト]
externalUrl: "https://kylemalloy.com"
- date: 9943-08-08
+ date: 9944-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/kylemalloy.com/index.md b/exampleSite/content/users/kylemalloy.com/index.md
index 6435ef4d..fdb9f975 100644
--- a/exampleSite/content/users/kylemalloy.com/index.md
+++ b/exampleSite/content/users/kylemalloy.com/index.md
@@ -2,7 +2,7 @@
title: "kylemalloy.com"
tags: [Personal site]
externalUrl: "https://kylemalloy.com"
- date: 9943-08-08
+ date: 9944-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/kylemalloy.com/index.zh-cn.md b/exampleSite/content/users/kylemalloy.com/index.zh-cn.md
index e9cb9eb6..d7085ab3 100644
--- a/exampleSite/content/users/kylemalloy.com/index.zh-cn.md
+++ b/exampleSite/content/users/kylemalloy.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "kylemalloy.com"
tags: [个人网站]
externalUrl: "https://kylemalloy.com"
- date: 9943-08-08
+ date: 9944-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/lelouvincx.github.io/index.it.md b/exampleSite/content/users/lelouvincx.github.io/index.it.md
index b0b20f96..941d04e3 100644
--- a/exampleSite/content/users/lelouvincx.github.io/index.it.md
+++ b/exampleSite/content/users/lelouvincx.github.io/index.it.md
@@ -2,7 +2,7 @@
title: "lelouvincx.github.io"
tags: [Sito personale]
externalUrl: "https://lelouvincx.github.io/"
- date: 9964-08-08
+ date: 9965-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/lelouvincx.github.io/index.ja.md b/exampleSite/content/users/lelouvincx.github.io/index.ja.md
index 225e310b..6cf540e2 100644
--- a/exampleSite/content/users/lelouvincx.github.io/index.ja.md
+++ b/exampleSite/content/users/lelouvincx.github.io/index.ja.md
@@ -2,7 +2,7 @@
title: "lelouvincx.github.io"
tags: [個人サイト]
externalUrl: "https://lelouvincx.github.io/"
- date: 9964-08-08
+ date: 9965-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/lelouvincx.github.io/index.md b/exampleSite/content/users/lelouvincx.github.io/index.md
index c111d8f3..a54ff931 100644
--- a/exampleSite/content/users/lelouvincx.github.io/index.md
+++ b/exampleSite/content/users/lelouvincx.github.io/index.md
@@ -2,7 +2,7 @@
title: "lelouvincx.github.io"
tags: [Personal site]
externalUrl: "https://lelouvincx.github.io/"
- date: 9964-08-08
+ date: 9965-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/lelouvincx.github.io/index.zh-cn.md b/exampleSite/content/users/lelouvincx.github.io/index.zh-cn.md
index 8d05af43..c0afa516 100644
--- a/exampleSite/content/users/lelouvincx.github.io/index.zh-cn.md
+++ b/exampleSite/content/users/lelouvincx.github.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "lelouvincx.github.io"
tags: [个人网站]
externalUrl: "https://lelouvincx.github.io/"
- date: 9964-08-08
+ date: 9965-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/loisvelasco.is-a.dev/feature.jpg b/exampleSite/content/users/loisvelasco.is-a.dev/feature.jpg
index 0f7ae44c..d64b1cef 100644
Binary files a/exampleSite/content/users/loisvelasco.is-a.dev/feature.jpg and b/exampleSite/content/users/loisvelasco.is-a.dev/feature.jpg differ
diff --git a/exampleSite/content/users/m3upt.com/index.it.md b/exampleSite/content/users/m3upt.com/index.it.md
index 005eaacd..a39c3820 100644
--- a/exampleSite/content/users/m3upt.com/index.it.md
+++ b/exampleSite/content/users/m3upt.com/index.it.md
@@ -2,7 +2,7 @@
title: "m3upt.com"
tags: [Sito del progetto]
externalUrl: "https://m3upt.com"
- date: 9957-08-08
+ date: 9958-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/m3upt.com/index.ja.md b/exampleSite/content/users/m3upt.com/index.ja.md
index 2d377f8e..476a9eb6 100644
--- a/exampleSite/content/users/m3upt.com/index.ja.md
+++ b/exampleSite/content/users/m3upt.com/index.ja.md
@@ -2,7 +2,7 @@
title: "m3upt.com"
tags: [プロジェクトサイト]
externalUrl: "https://m3upt.com"
- date: 9957-08-08
+ date: 9958-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/m3upt.com/index.md b/exampleSite/content/users/m3upt.com/index.md
index 46c7defd..3d50159a 100644
--- a/exampleSite/content/users/m3upt.com/index.md
+++ b/exampleSite/content/users/m3upt.com/index.md
@@ -2,7 +2,7 @@
title: "m3upt.com"
tags: [Project site]
externalUrl: "https://m3upt.com"
- date: 9957-08-08
+ date: 9958-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/m3upt.com/index.zh-cn.md b/exampleSite/content/users/m3upt.com/index.zh-cn.md
index fa2989de..ffd48f0e 100644
--- a/exampleSite/content/users/m3upt.com/index.zh-cn.md
+++ b/exampleSite/content/users/m3upt.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "m3upt.com"
tags: [项目现场]
externalUrl: "https://m3upt.com"
- date: 9957-08-08
+ date: 9958-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/mariuskimmina.com/feature.jpg b/exampleSite/content/users/mariuskimmina.com/feature.jpg
index 07b0e549..9594c53c 100644
Binary files a/exampleSite/content/users/mariuskimmina.com/feature.jpg and b/exampleSite/content/users/mariuskimmina.com/feature.jpg differ
diff --git a/exampleSite/content/users/mariuskimmina.com/index.it.md b/exampleSite/content/users/mariuskimmina.com/index.it.md
index 7730190e..a0ca5274 100644
--- a/exampleSite/content/users/mariuskimmina.com/index.it.md
+++ b/exampleSite/content/users/mariuskimmina.com/index.it.md
@@ -2,7 +2,7 @@
title: "mariuskimmina.com"
tags: [Sito personale]
externalUrl: "https://mariuskimmina.com/"
- date: 9972-08-08
+ date: 9973-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/mariuskimmina.com/index.ja.md b/exampleSite/content/users/mariuskimmina.com/index.ja.md
index 86cd5d16..87151af0 100644
--- a/exampleSite/content/users/mariuskimmina.com/index.ja.md
+++ b/exampleSite/content/users/mariuskimmina.com/index.ja.md
@@ -2,7 +2,7 @@
title: "mariuskimmina.com"
tags: [個人サイト]
externalUrl: "https://mariuskimmina.com/"
- date: 9972-08-08
+ date: 9973-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/mariuskimmina.com/index.md b/exampleSite/content/users/mariuskimmina.com/index.md
index 0d471ded..2f2b9d38 100644
--- a/exampleSite/content/users/mariuskimmina.com/index.md
+++ b/exampleSite/content/users/mariuskimmina.com/index.md
@@ -2,7 +2,7 @@
title: "mariuskimmina.com"
tags: [Personal site]
externalUrl: "https://mariuskimmina.com/"
- date: 9972-08-08
+ date: 9973-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/mariuskimmina.com/index.zh-cn.md b/exampleSite/content/users/mariuskimmina.com/index.zh-cn.md
index 555f91e6..1cb39243 100644
--- a/exampleSite/content/users/mariuskimmina.com/index.zh-cn.md
+++ b/exampleSite/content/users/mariuskimmina.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "mariuskimmina.com"
tags: [个人网站]
externalUrl: "https://mariuskimmina.com/"
- date: 9972-08-08
+ date: 9973-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/marupanda.art-marucomics/index.it.md b/exampleSite/content/users/marupanda.art-marucomics/index.it.md
index 4066ab8d..5b687786 100644
--- a/exampleSite/content/users/marupanda.art-marucomics/index.it.md
+++ b/exampleSite/content/users/marupanda.art-marucomics/index.it.md
@@ -2,7 +2,7 @@
title: "marupanda.art/marucomics"
tags: [Sito di fumetti]
externalUrl: "https://marupanda.art/marucomics/"
- date: 9958-08-08
+ date: 9959-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/marupanda.art-marucomics/index.ja.md b/exampleSite/content/users/marupanda.art-marucomics/index.ja.md
index 2862dd51..a9b040a1 100644
--- a/exampleSite/content/users/marupanda.art-marucomics/index.ja.md
+++ b/exampleSite/content/users/marupanda.art-marucomics/index.ja.md
@@ -2,7 +2,7 @@
title: "marupanda.art/marucomics"
tags: [コミックサイト]
externalUrl: "https://marupanda.art/marucomics/"
- date: 9958-08-08
+ date: 9959-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/marupanda.art-marucomics/index.md b/exampleSite/content/users/marupanda.art-marucomics/index.md
index 2cf0b353..2e82655e 100644
--- a/exampleSite/content/users/marupanda.art-marucomics/index.md
+++ b/exampleSite/content/users/marupanda.art-marucomics/index.md
@@ -2,7 +2,7 @@
title: "marupanda.art/marucomics"
tags: [Comics site]
externalUrl: "https://marupanda.art/marucomics/"
- date: 9958-08-08
+ date: 9959-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/marupanda.art-marucomics/index.zh-cn.md b/exampleSite/content/users/marupanda.art-marucomics/index.zh-cn.md
index c7dce6d4..0df56f33 100644
--- a/exampleSite/content/users/marupanda.art-marucomics/index.zh-cn.md
+++ b/exampleSite/content/users/marupanda.art-marucomics/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "marupanda.art/marucomics"
tags: [漫画网站]
externalUrl: "https://marupanda.art/marucomics/"
- date: 9958-08-08
+ date: 9959-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/mayer.life/index.it.md b/exampleSite/content/users/mayer.life/index.it.md
index 8a069f83..a626cbbe 100644
--- a/exampleSite/content/users/mayer.life/index.it.md
+++ b/exampleSite/content/users/mayer.life/index.it.md
@@ -2,7 +2,7 @@
title: "mayer.life"
tags: [Sito personale]
externalUrl: "https://mayer.life"
- date: 9949-08-08
+ date: 9950-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/mayer.life/index.ja.md b/exampleSite/content/users/mayer.life/index.ja.md
index e0f1781d..6c7ba271 100644
--- a/exampleSite/content/users/mayer.life/index.ja.md
+++ b/exampleSite/content/users/mayer.life/index.ja.md
@@ -2,7 +2,7 @@
title: "mayer.life"
tags: [個人サイト]
externalUrl: "https://mayer.life"
- date: 9949-08-08
+ date: 9950-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/mayer.life/index.md b/exampleSite/content/users/mayer.life/index.md
index 18efe704..5c511d46 100644
--- a/exampleSite/content/users/mayer.life/index.md
+++ b/exampleSite/content/users/mayer.life/index.md
@@ -2,7 +2,7 @@
title: "mayer.life"
tags: [Personal site]
externalUrl: "https://mayer.life"
- date: 9949-08-08
+ date: 9950-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/mayer.life/index.zh-cn.md b/exampleSite/content/users/mayer.life/index.zh-cn.md
index 881dbc6f..e668bc55 100644
--- a/exampleSite/content/users/mayer.life/index.zh-cn.md
+++ b/exampleSite/content/users/mayer.life/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "mayer.life"
tags: [个人网站]
externalUrl: "https://mayer.life"
- date: 9949-08-08
+ date: 9950-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/michaeldorner.de/index.it.md b/exampleSite/content/users/michaeldorner.de/index.it.md
index f1551bf6..499836d3 100644
--- a/exampleSite/content/users/michaeldorner.de/index.it.md
+++ b/exampleSite/content/users/michaeldorner.de/index.it.md
@@ -2,7 +2,7 @@
title: "michaeldorner.de"
tags: [Blog, Sito personale, Accademia]
externalUrl: "https://www.michaeldorner.de"
- date: 9920-08-08
+ date: 9922-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/michaeldorner.de/index.ja.md b/exampleSite/content/users/michaeldorner.de/index.ja.md
index 0ecbee65..572825a7 100644
--- a/exampleSite/content/users/michaeldorner.de/index.ja.md
+++ b/exampleSite/content/users/michaeldorner.de/index.ja.md
@@ -2,7 +2,7 @@
title: "michaeldorner.de"
tags: [ブログ, 個人サイト, 学術界]
externalUrl: "https://www.michaeldorner.de"
- date: 9920-08-08
+ date: 9922-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/michaeldorner.de/index.md b/exampleSite/content/users/michaeldorner.de/index.md
index 8987400a..34bb5f57 100644
--- a/exampleSite/content/users/michaeldorner.de/index.md
+++ b/exampleSite/content/users/michaeldorner.de/index.md
@@ -2,7 +2,7 @@
title: "michaeldorner.de"
tags: [Blog,Personal Site,Academia]
externalUrl: "https://www.michaeldorner.de"
- date: 9920-08-08
+ date: 9922-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/michaeldorner.de/index.zh-cn.md b/exampleSite/content/users/michaeldorner.de/index.zh-cn.md
index 5dcd0fba..99f6bbaf 100644
--- a/exampleSite/content/users/michaeldorner.de/index.zh-cn.md
+++ b/exampleSite/content/users/michaeldorner.de/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "michaeldorner.de"
tags: [博客, 个人网站, 学术界]
externalUrl: "https://www.michaeldorner.de"
- date: 9920-08-08
+ date: 9922-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/n9o.xyz/feature.jpg b/exampleSite/content/users/n9o.xyz/feature.jpg
index a4a0dfc7..1547991f 100644
Binary files a/exampleSite/content/users/n9o.xyz/feature.jpg and b/exampleSite/content/users/n9o.xyz/feature.jpg differ
diff --git a/exampleSite/content/users/nick.bouwhuis.net/feature.jpg b/exampleSite/content/users/nick.bouwhuis.net/feature.jpg
index eb18663a..d28de7ae 100644
Binary files a/exampleSite/content/users/nick.bouwhuis.net/feature.jpg and b/exampleSite/content/users/nick.bouwhuis.net/feature.jpg differ
diff --git a/exampleSite/content/users/nikarashihatsu.github.io/index.it.md b/exampleSite/content/users/nikarashihatsu.github.io/index.it.md
index 32e1183b..14d5dcfe 100644
--- a/exampleSite/content/users/nikarashihatsu.github.io/index.it.md
+++ b/exampleSite/content/users/nikarashihatsu.github.io/index.it.md
@@ -2,7 +2,7 @@
title: "nikarashihatsu.github.io"
tags: [Sito personale]
externalUrl: "https://nikarashihatsu.github.io/"
- date: 9962-08-08
+ date: 9963-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/nikarashihatsu.github.io/index.ja.md b/exampleSite/content/users/nikarashihatsu.github.io/index.ja.md
index 925e94a3..2bddf747 100644
--- a/exampleSite/content/users/nikarashihatsu.github.io/index.ja.md
+++ b/exampleSite/content/users/nikarashihatsu.github.io/index.ja.md
@@ -2,7 +2,7 @@
title: "nikarashihatsu.github.io"
tags: [個人サイト]
externalUrl: "https://nikarashihatsu.github.io/"
- date: 9962-08-08
+ date: 9963-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/nikarashihatsu.github.io/index.md b/exampleSite/content/users/nikarashihatsu.github.io/index.md
index 0308773c..1529bd7e 100644
--- a/exampleSite/content/users/nikarashihatsu.github.io/index.md
+++ b/exampleSite/content/users/nikarashihatsu.github.io/index.md
@@ -2,7 +2,7 @@
title: "nikarashihatsu.github.io"
tags: [Personal site]
externalUrl: "https://nikarashihatsu.github.io/"
- date: 9962-08-08
+ date: 9963-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/nikarashihatsu.github.io/index.zh-cn.md b/exampleSite/content/users/nikarashihatsu.github.io/index.zh-cn.md
index c0aa50d4..5d080cf2 100644
--- a/exampleSite/content/users/nikarashihatsu.github.io/index.zh-cn.md
+++ b/exampleSite/content/users/nikarashihatsu.github.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "nikarashihatsu.github.io"
tags: [个人网站]
externalUrl: "https://nikarashihatsu.github.io/"
- date: 9962-08-08
+ date: 9963-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg b/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg
index 8453431b..b3a56ba5 100644
Binary files a/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg and b/exampleSite/content/users/niklas-hartmann-dev.de/feature.jpg differ
diff --git a/exampleSite/content/users/notes.bluesdriveamelia.space/index.it.md b/exampleSite/content/users/notes.bluesdriveamelia.space/index.it.md
index d32a02c7..bde9799c 100644
--- a/exampleSite/content/users/notes.bluesdriveamelia.space/index.it.md
+++ b/exampleSite/content/users/notes.bluesdriveamelia.space/index.it.md
@@ -2,7 +2,7 @@
title: "notes.bluesdriveamelia.space"
tags: [Blog, Sito personale]
externalUrl: "https://notes.bluesdriveamelia.space/"
- date: 9930-08-08
+ date: 9932-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/notes.bluesdriveamelia.space/index.ja.md b/exampleSite/content/users/notes.bluesdriveamelia.space/index.ja.md
index 7f318d64..8402e64f 100644
--- a/exampleSite/content/users/notes.bluesdriveamelia.space/index.ja.md
+++ b/exampleSite/content/users/notes.bluesdriveamelia.space/index.ja.md
@@ -2,7 +2,7 @@
title: "notes.bluesdriveamelia.space"
tags: [ブログ, 個人サイト]
externalUrl: "https://notes.bluesdriveamelia.space/"
- date: 9930-08-08
+ date: 9932-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/notes.bluesdriveamelia.space/index.md b/exampleSite/content/users/notes.bluesdriveamelia.space/index.md
index 43b9b785..8be5b5f2 100644
--- a/exampleSite/content/users/notes.bluesdriveamelia.space/index.md
+++ b/exampleSite/content/users/notes.bluesdriveamelia.space/index.md
@@ -2,7 +2,7 @@
title: "notes.bluesdriveamelia.space"
tags: [Blog,Personal site]
externalUrl: "https://notes.bluesdriveamelia.space/"
- date: 9930-08-08
+ date: 9932-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/notes.bluesdriveamelia.space/index.zh-cn.md b/exampleSite/content/users/notes.bluesdriveamelia.space/index.zh-cn.md
index fefda477..0491203e 100644
--- a/exampleSite/content/users/notes.bluesdriveamelia.space/index.zh-cn.md
+++ b/exampleSite/content/users/notes.bluesdriveamelia.space/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "notes.bluesdriveamelia.space"
tags: [博客, 个人网站]
externalUrl: "https://notes.bluesdriveamelia.space/"
- date: 9930-08-08
+ date: 9932-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ohdmire.github.io/feature.jpg b/exampleSite/content/users/ohdmire.github.io/feature.jpg
index 6988a8c2..1ec67d5e 100644
Binary files a/exampleSite/content/users/ohdmire.github.io/feature.jpg and b/exampleSite/content/users/ohdmire.github.io/feature.jpg differ
diff --git a/exampleSite/content/users/ohdmire.github.io/index.it.md b/exampleSite/content/users/ohdmire.github.io/index.it.md
index 256fdc3a..4afcaf30 100644
--- a/exampleSite/content/users/ohdmire.github.io/index.it.md
+++ b/exampleSite/content/users/ohdmire.github.io/index.it.md
@@ -2,7 +2,7 @@
title: "ohdmire.github.io"
tags: [Sito personale]
externalUrl: "https://ohdmire.github.io"
- date: 9946-08-08
+ date: 9947-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ohdmire.github.io/index.ja.md b/exampleSite/content/users/ohdmire.github.io/index.ja.md
index df92d651..4a18b2cd 100644
--- a/exampleSite/content/users/ohdmire.github.io/index.ja.md
+++ b/exampleSite/content/users/ohdmire.github.io/index.ja.md
@@ -2,7 +2,7 @@
title: "ohdmire.github.io"
tags: [個人サイト]
externalUrl: "https://ohdmire.github.io"
- date: 9946-08-08
+ date: 9947-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ohdmire.github.io/index.md b/exampleSite/content/users/ohdmire.github.io/index.md
index 0f4bad55..f51368bd 100644
--- a/exampleSite/content/users/ohdmire.github.io/index.md
+++ b/exampleSite/content/users/ohdmire.github.io/index.md
@@ -2,7 +2,7 @@
title: "ohdmire.github.io"
tags: [Personal site]
externalUrl: "https://ohdmire.github.io"
- date: 9946-08-08
+ date: 9947-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ohdmire.github.io/index.zh-cn.md b/exampleSite/content/users/ohdmire.github.io/index.zh-cn.md
index 8902d6e9..1c77090e 100644
--- a/exampleSite/content/users/ohdmire.github.io/index.zh-cn.md
+++ b/exampleSite/content/users/ohdmire.github.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "ohdmire.github.io"
tags: [个人网站]
externalUrl: "https://ohdmire.github.io"
- date: 9946-08-08
+ date: 9947-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/pacochan.net/index.it.md b/exampleSite/content/users/pacochan.net/index.it.md
index 872c2e37..8cc613e4 100644
--- a/exampleSite/content/users/pacochan.net/index.it.md
+++ b/exampleSite/content/users/pacochan.net/index.it.md
@@ -2,7 +2,7 @@
title: "pacochan.net"
tags: [Sito personale]
externalUrl: "https://pacochan.net"
- date: 9956-08-08
+ date: 9957-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/pacochan.net/index.ja.md b/exampleSite/content/users/pacochan.net/index.ja.md
index f6542c70..d441b83e 100644
--- a/exampleSite/content/users/pacochan.net/index.ja.md
+++ b/exampleSite/content/users/pacochan.net/index.ja.md
@@ -2,7 +2,7 @@
title: "pacochan.net"
tags: [個人サイト]
externalUrl: "https://pacochan.net"
- date: 9956-08-08
+ date: 9957-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/pacochan.net/index.md b/exampleSite/content/users/pacochan.net/index.md
index e720b541..7a9b78c2 100644
--- a/exampleSite/content/users/pacochan.net/index.md
+++ b/exampleSite/content/users/pacochan.net/index.md
@@ -2,7 +2,7 @@
title: "pacochan.net"
tags: [Personal site]
externalUrl: "https://pacochan.net"
- date: 9956-08-08
+ date: 9957-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/pacochan.net/index.zh-cn.md b/exampleSite/content/users/pacochan.net/index.zh-cn.md
index 3478b284..2a0ef5a6 100644
--- a/exampleSite/content/users/pacochan.net/index.zh-cn.md
+++ b/exampleSite/content/users/pacochan.net/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "pacochan.net"
tags: [个人网站]
externalUrl: "https://pacochan.net"
- date: 9956-08-08
+ date: 9957-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/pmnxis.github.io/feature.jpg b/exampleSite/content/users/pmnxis.github.io/feature.jpg
index fe54b2fc..2318bb19 100644
Binary files a/exampleSite/content/users/pmnxis.github.io/feature.jpg and b/exampleSite/content/users/pmnxis.github.io/feature.jpg differ
diff --git a/exampleSite/content/users/priyakdey.com/feature.jpg b/exampleSite/content/users/priyakdey.com/feature.jpg
index 7eb65714..8b7daddc 100644
Binary files a/exampleSite/content/users/priyakdey.com/feature.jpg and b/exampleSite/content/users/priyakdey.com/feature.jpg differ
diff --git a/exampleSite/content/users/rdgo.dev/feature.jpg b/exampleSite/content/users/rdgo.dev/feature.jpg
index da1a06e2..8e6cf068 100644
Binary files a/exampleSite/content/users/rdgo.dev/feature.jpg and b/exampleSite/content/users/rdgo.dev/feature.jpg differ
diff --git a/exampleSite/content/users/rdgo.dev/index.it.md b/exampleSite/content/users/rdgo.dev/index.it.md
index bf9a3dac..96f2e63c 100644
--- a/exampleSite/content/users/rdgo.dev/index.it.md
+++ b/exampleSite/content/users/rdgo.dev/index.it.md
@@ -2,7 +2,7 @@
title: "rdgo.dev"
tags: [Sito personale]
externalUrl: "https://rdgo.dev/"
- date: 9966-08-08
+ date: 9967-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/rdgo.dev/index.ja.md b/exampleSite/content/users/rdgo.dev/index.ja.md
index 97438419..00a0835f 100644
--- a/exampleSite/content/users/rdgo.dev/index.ja.md
+++ b/exampleSite/content/users/rdgo.dev/index.ja.md
@@ -2,7 +2,7 @@
title: "rdgo.dev"
tags: [個人サイト]
externalUrl: "https://rdgo.dev/"
- date: 9966-08-08
+ date: 9967-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/rdgo.dev/index.md b/exampleSite/content/users/rdgo.dev/index.md
index abdf9ea7..1442887e 100644
--- a/exampleSite/content/users/rdgo.dev/index.md
+++ b/exampleSite/content/users/rdgo.dev/index.md
@@ -2,7 +2,7 @@
title: "rdgo.dev"
tags: [Personal site]
externalUrl: "https://rdgo.dev/"
- date: 9966-08-08
+ date: 9967-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/rdgo.dev/index.zh-cn.md b/exampleSite/content/users/rdgo.dev/index.zh-cn.md
index 76d216d8..42a08de5 100644
--- a/exampleSite/content/users/rdgo.dev/index.zh-cn.md
+++ b/exampleSite/content/users/rdgo.dev/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "rdgo.dev"
tags: [个人网站]
externalUrl: "https://rdgo.dev/"
- date: 9966-08-08
+ date: 9967-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/rejowski.xyz/feature.jpg b/exampleSite/content/users/rejowski.xyz/feature.jpg
index 594b3c6b..321bc9fc 100644
Binary files a/exampleSite/content/users/rejowski.xyz/feature.jpg and b/exampleSite/content/users/rejowski.xyz/feature.jpg differ
diff --git a/exampleSite/content/users/rejowski.xyz/index.it.md b/exampleSite/content/users/rejowski.xyz/index.it.md
index 4a432a52..77966939 100644
--- a/exampleSite/content/users/rejowski.xyz/index.it.md
+++ b/exampleSite/content/users/rejowski.xyz/index.it.md
@@ -2,7 +2,7 @@
title: "rejowski.xyz"
tags: [Sito personale]
externalUrl: "https://rejowski.xyz/"
- date: 9941-08-08
+ date: 9942-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/rejowski.xyz/index.ja.md b/exampleSite/content/users/rejowski.xyz/index.ja.md
index 80a67d29..6f8a0ca5 100644
--- a/exampleSite/content/users/rejowski.xyz/index.ja.md
+++ b/exampleSite/content/users/rejowski.xyz/index.ja.md
@@ -2,7 +2,7 @@
title: "rejowski.xyz"
tags: [個人サイト]
externalUrl: "https://rejowski.xyz/"
- date: 9941-08-08
+ date: 9942-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/rejowski.xyz/index.md b/exampleSite/content/users/rejowski.xyz/index.md
index 468b3c06..2e8b0147 100644
--- a/exampleSite/content/users/rejowski.xyz/index.md
+++ b/exampleSite/content/users/rejowski.xyz/index.md
@@ -2,7 +2,7 @@
title: "rejowski.xyz"
tags: [Personal Site]
externalUrl: "https://rejowski.xyz/"
- date: 9941-08-08
+ date: 9942-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/rejowski.xyz/index.zh-cn.md b/exampleSite/content/users/rejowski.xyz/index.zh-cn.md
index d6b5fd13..af386b66 100644
--- a/exampleSite/content/users/rejowski.xyz/index.zh-cn.md
+++ b/exampleSite/content/users/rejowski.xyz/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "rejowski.xyz"
tags: [个人网站]
externalUrl: "https://rejowski.xyz/"
- date: 9941-08-08
+ date: 9942-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/renaud.warnotte.be/index.it.md b/exampleSite/content/users/renaud.warnotte.be/index.it.md
index 3c5319e1..6efa3fa0 100644
--- a/exampleSite/content/users/renaud.warnotte.be/index.it.md
+++ b/exampleSite/content/users/renaud.warnotte.be/index.it.md
@@ -2,7 +2,7 @@
title: "renaud.warnotte.be"
tags: [Sito personale]
externalUrl: "https://renaud.warnotte.be"
- date: 9938-08-08
+ date: 9939-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/renaud.warnotte.be/index.ja.md b/exampleSite/content/users/renaud.warnotte.be/index.ja.md
index e12bd242..df4f9cce 100644
--- a/exampleSite/content/users/renaud.warnotte.be/index.ja.md
+++ b/exampleSite/content/users/renaud.warnotte.be/index.ja.md
@@ -2,7 +2,7 @@
title: "renaud.warnotte.be"
tags: [個人サイト]
externalUrl: "https://renaud.warnotte.be"
- date: 9938-08-08
+ date: 9939-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/renaud.warnotte.be/index.md b/exampleSite/content/users/renaud.warnotte.be/index.md
index e5400ee6..bca0000c 100644
--- a/exampleSite/content/users/renaud.warnotte.be/index.md
+++ b/exampleSite/content/users/renaud.warnotte.be/index.md
@@ -2,7 +2,7 @@
title: "renaud.warnotte.be"
tags: [Personal site]
externalUrl: "https://renaud.warnotte.be"
- date: 9938-08-08
+ date: 9939-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/renaud.warnotte.be/index.zh-cn.md b/exampleSite/content/users/renaud.warnotte.be/index.zh-cn.md
index c3661a3d..3a774971 100644
--- a/exampleSite/content/users/renaud.warnotte.be/index.zh-cn.md
+++ b/exampleSite/content/users/renaud.warnotte.be/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "renaud.warnotte.be"
tags: [个人网站]
externalUrl: "https://renaud.warnotte.be"
- date: 9938-08-08
+ date: 9939-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ricklan.photography/feature.jpg b/exampleSite/content/users/ricklan.photography/feature.jpg
index f39c05d7..4ad9525c 100644
Binary files a/exampleSite/content/users/ricklan.photography/feature.jpg and b/exampleSite/content/users/ricklan.photography/feature.jpg differ
diff --git a/exampleSite/content/users/ricklan.photography/index.it.md b/exampleSite/content/users/ricklan.photography/index.it.md
index 1775f521..380e78e5 100644
--- a/exampleSite/content/users/ricklan.photography/index.it.md
+++ b/exampleSite/content/users/ricklan.photography/index.it.md
@@ -2,7 +2,7 @@
title: "ricklan.photography"
tags: [Sito personale]
externalUrl: "https://ricklan.photography"
- date: 9945-08-08
+ date: 9946-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ricklan.photography/index.ja.md b/exampleSite/content/users/ricklan.photography/index.ja.md
index f9d9b066..2e0f8164 100644
--- a/exampleSite/content/users/ricklan.photography/index.ja.md
+++ b/exampleSite/content/users/ricklan.photography/index.ja.md
@@ -2,7 +2,7 @@
title: "ricklan.photography"
tags: [個人サイト]
externalUrl: "https://ricklan.photography"
- date: 9945-08-08
+ date: 9946-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ricklan.photography/index.md b/exampleSite/content/users/ricklan.photography/index.md
index db8432de..40b3c01b 100644
--- a/exampleSite/content/users/ricklan.photography/index.md
+++ b/exampleSite/content/users/ricklan.photography/index.md
@@ -2,7 +2,7 @@
title: "ricklan.photography"
tags: [Personal site]
externalUrl: "https://ricklan.photography"
- date: 9945-08-08
+ date: 9946-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/ricklan.photography/index.zh-cn.md b/exampleSite/content/users/ricklan.photography/index.zh-cn.md
index 750cd1c1..567a9375 100644
--- a/exampleSite/content/users/ricklan.photography/index.zh-cn.md
+++ b/exampleSite/content/users/ricklan.photography/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "ricklan.photography"
tags: [个人网站]
externalUrl: "https://ricklan.photography"
- date: 9945-08-08
+ date: 9946-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/scottmckendry.tech/feature.jpg b/exampleSite/content/users/scottmckendry.tech/feature.jpg
index 8beecd69..fb0a8c1b 100644
Binary files a/exampleSite/content/users/scottmckendry.tech/feature.jpg and b/exampleSite/content/users/scottmckendry.tech/feature.jpg differ
diff --git a/exampleSite/content/users/scottmckendry.tech/index.it.md b/exampleSite/content/users/scottmckendry.tech/index.it.md
index 58990157..87e5fbb2 100644
--- a/exampleSite/content/users/scottmckendry.tech/index.it.md
+++ b/exampleSite/content/users/scottmckendry.tech/index.it.md
@@ -2,7 +2,7 @@
title: "scottmckendry.tech"
tags: [Sito personale]
externalUrl: "https://scottmckendry.tech"
- date: 9948-08-08
+ date: 9949-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/scottmckendry.tech/index.ja.md b/exampleSite/content/users/scottmckendry.tech/index.ja.md
index a5659c2a..703b19b2 100644
--- a/exampleSite/content/users/scottmckendry.tech/index.ja.md
+++ b/exampleSite/content/users/scottmckendry.tech/index.ja.md
@@ -2,7 +2,7 @@
title: "scottmckendry.tech"
tags: [個人サイト]
externalUrl: "https://scottmckendry.tech"
- date: 9948-08-08
+ date: 9949-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/scottmckendry.tech/index.md b/exampleSite/content/users/scottmckendry.tech/index.md
index 7887dbac..7fca77a2 100644
--- a/exampleSite/content/users/scottmckendry.tech/index.md
+++ b/exampleSite/content/users/scottmckendry.tech/index.md
@@ -2,7 +2,7 @@
title: "scottmckendry.tech"
tags: [Personal site]
externalUrl: "https://scottmckendry.tech"
- date: 9948-08-08
+ date: 9949-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/scottmckendry.tech/index.zh-cn.md b/exampleSite/content/users/scottmckendry.tech/index.zh-cn.md
index 98cfdb97..7a24a498 100644
--- a/exampleSite/content/users/scottmckendry.tech/index.zh-cn.md
+++ b/exampleSite/content/users/scottmckendry.tech/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "scottmckendry.tech"
tags: [个人网站]
externalUrl: "https://scottmckendry.tech"
- date: 9948-08-08
+ date: 9949-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/talkdimsum.com/index.it.md b/exampleSite/content/users/talkdimsum.com/index.it.md
index ca1239de..2640645d 100644
--- a/exampleSite/content/users/talkdimsum.com/index.it.md
+++ b/exampleSite/content/users/talkdimsum.com/index.it.md
@@ -2,7 +2,7 @@
title: "talkdimsum.com"
tags: [Sito dell'app]
externalUrl: "https://talkdimsum.com/"
- date: 9968-08-08
+ date: 9969-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/talkdimsum.com/index.ja.md b/exampleSite/content/users/talkdimsum.com/index.ja.md
index 0330a2ef..e71d7034 100644
--- a/exampleSite/content/users/talkdimsum.com/index.ja.md
+++ b/exampleSite/content/users/talkdimsum.com/index.ja.md
@@ -2,7 +2,7 @@
title: "talkdimsum.com"
tags: [アプリサイト]
externalUrl: "https://talkdimsum.com/"
- date: 9968-08-08
+ date: 9969-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/talkdimsum.com/index.md b/exampleSite/content/users/talkdimsum.com/index.md
index 7d237760..90e7c64b 100644
--- a/exampleSite/content/users/talkdimsum.com/index.md
+++ b/exampleSite/content/users/talkdimsum.com/index.md
@@ -2,7 +2,7 @@
title: "talkdimsum.com"
tags: [App site]
externalUrl: "https://talkdimsum.com/"
- date: 9968-08-08
+ date: 9969-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/talkdimsum.com/index.zh-cn.md b/exampleSite/content/users/talkdimsum.com/index.zh-cn.md
index ebd45797..0d027571 100644
--- a/exampleSite/content/users/talkdimsum.com/index.zh-cn.md
+++ b/exampleSite/content/users/talkdimsum.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "talkdimsum.com"
tags: [应用网站]
externalUrl: "https://talkdimsum.com/"
- date: 9968-08-08
+ date: 9969-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/technicaldc.github.io/index.it.md b/exampleSite/content/users/technicaldc.github.io/index.it.md
index ac9637ee..4dec6ea8 100644
--- a/exampleSite/content/users/technicaldc.github.io/index.it.md
+++ b/exampleSite/content/users/technicaldc.github.io/index.it.md
@@ -2,7 +2,7 @@
title: "technicaldc.github.io"
tags: [Sito personale, Blog]
externalUrl: "https://technicaldc.github.io/"
- date: 9936-08-08
+ date: 9937-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/technicaldc.github.io/index.ja.md b/exampleSite/content/users/technicaldc.github.io/index.ja.md
index cef2380c..a461036b 100644
--- a/exampleSite/content/users/technicaldc.github.io/index.ja.md
+++ b/exampleSite/content/users/technicaldc.github.io/index.ja.md
@@ -2,7 +2,7 @@
title: "technicaldc.github.io"
tags: [個人サイト, ブログ]
externalUrl: "https://technicaldc.github.io/"
- date: 9936-08-08
+ date: 9937-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/technicaldc.github.io/index.md b/exampleSite/content/users/technicaldc.github.io/index.md
index 4eb97239..485466dc 100644
--- a/exampleSite/content/users/technicaldc.github.io/index.md
+++ b/exampleSite/content/users/technicaldc.github.io/index.md
@@ -2,7 +2,7 @@
title: "technicaldc.github.io"
tags: [Personal Site,Blog]
externalUrl: "https://technicaldc.github.io/"
- date: 9936-08-08
+ date: 9937-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/technicaldc.github.io/index.zh-cn.md b/exampleSite/content/users/technicaldc.github.io/index.zh-cn.md
index 8ba5ecec..9bcc831a 100644
--- a/exampleSite/content/users/technicaldc.github.io/index.zh-cn.md
+++ b/exampleSite/content/users/technicaldc.github.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "technicaldc.github.io"
tags: [个人网站, 博客]
externalUrl: "https://technicaldc.github.io/"
- date: 9936-08-08
+ date: 9937-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/technicat.com/feature.jpg b/exampleSite/content/users/technicat.com/feature.jpg
index 8177cef7..58abe178 100644
Binary files a/exampleSite/content/users/technicat.com/feature.jpg and b/exampleSite/content/users/technicat.com/feature.jpg differ
diff --git a/exampleSite/content/users/technicat.com/index.it.md b/exampleSite/content/users/technicat.com/index.it.md
index 6e8a3cc3..93af3f70 100644
--- a/exampleSite/content/users/technicat.com/index.it.md
+++ b/exampleSite/content/users/technicat.com/index.it.md
@@ -2,7 +2,7 @@
title: "technicat.com"
tags: [Sito aziendale]
externalUrl: "https://technicat.com/"
- date: 9971-08-08
+ date: 9972-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/technicat.com/index.ja.md b/exampleSite/content/users/technicat.com/index.ja.md
index 7c293cb4..3fe973da 100644
--- a/exampleSite/content/users/technicat.com/index.ja.md
+++ b/exampleSite/content/users/technicat.com/index.ja.md
@@ -2,7 +2,7 @@
title: "technicat.com"
tags: [企業サイト]
externalUrl: "https://technicat.com/"
- date: 9971-08-08
+ date: 9972-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/technicat.com/index.md b/exampleSite/content/users/technicat.com/index.md
index 18e17002..5bb9950e 100644
--- a/exampleSite/content/users/technicat.com/index.md
+++ b/exampleSite/content/users/technicat.com/index.md
@@ -2,7 +2,7 @@
title: "technicat.com"
tags: [Company site]
externalUrl: "https://technicat.com/"
- date: 9971-08-08
+ date: 9972-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/technicat.com/index.zh-cn.md b/exampleSite/content/users/technicat.com/index.zh-cn.md
index 24fff526..94bd5519 100644
--- a/exampleSite/content/users/technicat.com/index.zh-cn.md
+++ b/exampleSite/content/users/technicat.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "technicat.com"
tags: [公司网站]
externalUrl: "https://technicat.com/"
- date: 9971-08-08
+ date: 9972-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/the-maze.net/feature.jpg b/exampleSite/content/users/the-maze.net/feature.jpg
index b33b20f6..b368e606 100644
Binary files a/exampleSite/content/users/the-maze.net/feature.jpg and b/exampleSite/content/users/the-maze.net/feature.jpg differ
diff --git a/exampleSite/content/users/the-maze.net/index.it.md b/exampleSite/content/users/the-maze.net/index.it.md
index b4e9fb23..c4da1507 100644
--- a/exampleSite/content/users/the-maze.net/index.it.md
+++ b/exampleSite/content/users/the-maze.net/index.it.md
@@ -2,7 +2,7 @@
title: "the-maze.net"
tags: [Sito personale, Blog]
externalUrl: "https://www.the-maze.net/"
- date: 9934-08-08
+ date: 9935-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/the-maze.net/index.ja.md b/exampleSite/content/users/the-maze.net/index.ja.md
index 61b76cf8..b8cfb45b 100644
--- a/exampleSite/content/users/the-maze.net/index.ja.md
+++ b/exampleSite/content/users/the-maze.net/index.ja.md
@@ -2,7 +2,7 @@
title: "the-maze.net"
tags: [個人サイト, ブログ]
externalUrl: "https://www.the-maze.net/"
- date: 9934-08-08
+ date: 9935-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/the-maze.net/index.md b/exampleSite/content/users/the-maze.net/index.md
index 39774bea..61ff31b0 100644
--- a/exampleSite/content/users/the-maze.net/index.md
+++ b/exampleSite/content/users/the-maze.net/index.md
@@ -2,7 +2,7 @@
title: "the-maze.net"
tags: [Personal site,Blog]
externalUrl: "https://www.the-maze.net/"
- date: 9934-08-08
+ date: 9935-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/the-maze.net/index.zh-cn.md b/exampleSite/content/users/the-maze.net/index.zh-cn.md
index e2bdd2fe..85afef55 100644
--- a/exampleSite/content/users/the-maze.net/index.zh-cn.md
+++ b/exampleSite/content/users/the-maze.net/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "the-maze.net"
tags: [个人网站, 博客]
externalUrl: "https://www.the-maze.net/"
- date: 9934-08-08
+ date: 9935-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/theindiecoder.cloud/index.it.md b/exampleSite/content/users/theindiecoder.cloud/index.it.md
index b0a33141..1e7cfa86 100644
--- a/exampleSite/content/users/theindiecoder.cloud/index.it.md
+++ b/exampleSite/content/users/theindiecoder.cloud/index.it.md
@@ -2,7 +2,7 @@
title: "theindiecoder.cloud"
tags: [Sito personale]
externalUrl: "https://theindiecoder.cloud"
- date: 9951-08-08
+ date: 9952-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/theindiecoder.cloud/index.ja.md b/exampleSite/content/users/theindiecoder.cloud/index.ja.md
index 2a86adb3..e8046006 100644
--- a/exampleSite/content/users/theindiecoder.cloud/index.ja.md
+++ b/exampleSite/content/users/theindiecoder.cloud/index.ja.md
@@ -2,7 +2,7 @@
title: "theindiecoder.cloud"
tags: [個人サイト]
externalUrl: "https://theindiecoder.cloud"
- date: 9951-08-08
+ date: 9952-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/theindiecoder.cloud/index.md b/exampleSite/content/users/theindiecoder.cloud/index.md
index 76b85fac..b9fa956d 100644
--- a/exampleSite/content/users/theindiecoder.cloud/index.md
+++ b/exampleSite/content/users/theindiecoder.cloud/index.md
@@ -2,7 +2,7 @@
title: "theindiecoder.cloud"
tags: [Personal site]
externalUrl: "https://theindiecoder.cloud"
- date: 9951-08-08
+ date: 9952-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/theindiecoder.cloud/index.zh-cn.md b/exampleSite/content/users/theindiecoder.cloud/index.zh-cn.md
index e0a72b0b..b0e4d03f 100644
--- a/exampleSite/content/users/theindiecoder.cloud/index.zh-cn.md
+++ b/exampleSite/content/users/theindiecoder.cloud/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "theindiecoder.cloud"
tags: [个人网站]
externalUrl: "https://theindiecoder.cloud"
- date: 9951-08-08
+ date: 9952-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/todreamr.github.io/index.it.md b/exampleSite/content/users/todreamr.github.io/index.it.md
index 43c92894..2a527f3e 100644
--- a/exampleSite/content/users/todreamr.github.io/index.it.md
+++ b/exampleSite/content/users/todreamr.github.io/index.it.md
@@ -2,7 +2,7 @@
title: "todreamr.github.io"
tags: [Sito personale]
externalUrl: "https://todreamr.github.io/"
- date: 9928-08-08
+ date: 9930-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/todreamr.github.io/index.ja.md b/exampleSite/content/users/todreamr.github.io/index.ja.md
index f7f8f680..8975855d 100644
--- a/exampleSite/content/users/todreamr.github.io/index.ja.md
+++ b/exampleSite/content/users/todreamr.github.io/index.ja.md
@@ -2,7 +2,7 @@
title: "todreamr.github.io"
tags: [個人サイト]
externalUrl: "https://todreamr.github.io/"
- date: 9928-08-08
+ date: 9930-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/todreamr.github.io/index.md b/exampleSite/content/users/todreamr.github.io/index.md
index bbb46047..dd5373ad 100644
--- a/exampleSite/content/users/todreamr.github.io/index.md
+++ b/exampleSite/content/users/todreamr.github.io/index.md
@@ -2,7 +2,7 @@
title: "todreamr.github.io"
tags: [Personal site]
externalUrl: "https://todreamr.github.io/"
- date: 9928-08-08
+ date: 9930-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/todreamr.github.io/index.zh-cn.md b/exampleSite/content/users/todreamr.github.io/index.zh-cn.md
index be734945..afac32bb 100644
--- a/exampleSite/content/users/todreamr.github.io/index.zh-cn.md
+++ b/exampleSite/content/users/todreamr.github.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "todreamr.github.io"
tags: [个人网站]
externalUrl: "https://todreamr.github.io/"
- date: 9928-08-08
+ date: 9930-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/users.json b/exampleSite/content/users/users.json
index 741c6a82..91f6ba92 100644
--- a/exampleSite/content/users/users.json
+++ b/exampleSite/content/users/users.json
@@ -666,5 +666,22 @@
"Author",
"Digital Garden"
]
+ },
+ {
+ "title": "Beauty Formulation",
+ "url": "https://www.beautyformulation.com/",
+ "source": "n/a",
+ "tags": [
+ "Company site"
+ ]
+ },
+ {
+ "title": "Middle of Nowhere",
+ "url": "https://blog.wtcx.dev/",
+ "source": "n/a",
+ "tags": [
+ "Personal Site",
+ "Blog"
+ ]
}
-]
\ No newline at end of file
+]
diff --git a/exampleSite/content/users/v-y-s.com/feature.jpg b/exampleSite/content/users/v-y-s.com/feature.jpg
index ebc83fe1..d54e51af 100644
Binary files a/exampleSite/content/users/v-y-s.com/feature.jpg and b/exampleSite/content/users/v-y-s.com/feature.jpg differ
diff --git a/exampleSite/content/users/v-y-s.com/index.it.md b/exampleSite/content/users/v-y-s.com/index.it.md
index 916dd06a..b5120df8 100644
--- a/exampleSite/content/users/v-y-s.com/index.it.md
+++ b/exampleSite/content/users/v-y-s.com/index.it.md
@@ -2,7 +2,7 @@
title: "v-y-s.com"
tags: [Sito personale]
externalUrl: "https://v-y-s.com/"
- date: 9940-08-08
+ date: 9941-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/v-y-s.com/index.ja.md b/exampleSite/content/users/v-y-s.com/index.ja.md
index 07d4d223..a63fec88 100644
--- a/exampleSite/content/users/v-y-s.com/index.ja.md
+++ b/exampleSite/content/users/v-y-s.com/index.ja.md
@@ -2,7 +2,7 @@
title: "v-y-s.com"
tags: [個人サイト]
externalUrl: "https://v-y-s.com/"
- date: 9940-08-08
+ date: 9941-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/v-y-s.com/index.md b/exampleSite/content/users/v-y-s.com/index.md
index be36a4b4..9ea550e7 100644
--- a/exampleSite/content/users/v-y-s.com/index.md
+++ b/exampleSite/content/users/v-y-s.com/index.md
@@ -2,7 +2,7 @@
title: "v-y-s.com"
tags: [Personal Site]
externalUrl: "https://v-y-s.com/"
- date: 9940-08-08
+ date: 9941-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/v-y-s.com/index.zh-cn.md b/exampleSite/content/users/v-y-s.com/index.zh-cn.md
index 096e564b..d95150d4 100644
--- a/exampleSite/content/users/v-y-s.com/index.zh-cn.md
+++ b/exampleSite/content/users/v-y-s.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "v-y-s.com"
tags: [个人网站]
externalUrl: "https://v-y-s.com/"
- date: 9940-08-08
+ date: 9941-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/vkmki001.github.io/feature.jpg b/exampleSite/content/users/vkmki001.github.io/feature.jpg
index 4ef3e88c..ce90dec5 100644
Binary files a/exampleSite/content/users/vkmki001.github.io/feature.jpg and b/exampleSite/content/users/vkmki001.github.io/feature.jpg differ
diff --git a/exampleSite/content/users/vkmki001.github.io/index.it.md b/exampleSite/content/users/vkmki001.github.io/index.it.md
index 76a3a94b..d229838c 100644
--- a/exampleSite/content/users/vkmki001.github.io/index.it.md
+++ b/exampleSite/content/users/vkmki001.github.io/index.it.md
@@ -2,7 +2,7 @@
title: "vkmki001.github.io"
tags: [Sito personale]
externalUrl: "https://vkmki001.github.io/"
- date: 9954-08-08
+ date: 9955-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/vkmki001.github.io/index.ja.md b/exampleSite/content/users/vkmki001.github.io/index.ja.md
index 128e4e25..487dad32 100644
--- a/exampleSite/content/users/vkmki001.github.io/index.ja.md
+++ b/exampleSite/content/users/vkmki001.github.io/index.ja.md
@@ -2,7 +2,7 @@
title: "vkmki001.github.io"
tags: [個人サイト]
externalUrl: "https://vkmki001.github.io/"
- date: 9954-08-08
+ date: 9955-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/vkmki001.github.io/index.md b/exampleSite/content/users/vkmki001.github.io/index.md
index b1d89dcc..26ccfe1a 100644
--- a/exampleSite/content/users/vkmki001.github.io/index.md
+++ b/exampleSite/content/users/vkmki001.github.io/index.md
@@ -2,7 +2,7 @@
title: "vkmki001.github.io"
tags: [Personal site]
externalUrl: "https://vkmki001.github.io/"
- date: 9954-08-08
+ date: 9955-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/vkmki001.github.io/index.zh-cn.md b/exampleSite/content/users/vkmki001.github.io/index.zh-cn.md
index fceb612a..dcd3dde5 100644
--- a/exampleSite/content/users/vkmki001.github.io/index.zh-cn.md
+++ b/exampleSite/content/users/vkmki001.github.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "vkmki001.github.io"
tags: [个人网站]
externalUrl: "https://vkmki001.github.io/"
- date: 9954-08-08
+ date: 9955-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/weaxsey.org/index.it.md b/exampleSite/content/users/weaxsey.org/index.it.md
index 6f5a0603..bb48dfb3 100644
--- a/exampleSite/content/users/weaxsey.org/index.it.md
+++ b/exampleSite/content/users/weaxsey.org/index.it.md
@@ -2,7 +2,7 @@
title: "weaxsey.org"
tags: [Sito personale]
externalUrl: "https://weaxsey.org/"
- date: 9963-08-08
+ date: 9964-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/weaxsey.org/index.ja.md b/exampleSite/content/users/weaxsey.org/index.ja.md
index e8b81035..833c3155 100644
--- a/exampleSite/content/users/weaxsey.org/index.ja.md
+++ b/exampleSite/content/users/weaxsey.org/index.ja.md
@@ -2,7 +2,7 @@
title: "weaxsey.org"
tags: [個人サイト]
externalUrl: "https://weaxsey.org/"
- date: 9963-08-08
+ date: 9964-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/weaxsey.org/index.md b/exampleSite/content/users/weaxsey.org/index.md
index 74d12691..8fdb39f2 100644
--- a/exampleSite/content/users/weaxsey.org/index.md
+++ b/exampleSite/content/users/weaxsey.org/index.md
@@ -2,7 +2,7 @@
title: "weaxsey.org"
tags: [Personal site]
externalUrl: "https://weaxsey.org/"
- date: 9963-08-08
+ date: 9964-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/weaxsey.org/index.zh-cn.md b/exampleSite/content/users/weaxsey.org/index.zh-cn.md
index 5a42290f..199d7aa0 100644
--- a/exampleSite/content/users/weaxsey.org/index.zh-cn.md
+++ b/exampleSite/content/users/weaxsey.org/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "weaxsey.org"
tags: [个人网站]
externalUrl: "https://weaxsey.org/"
- date: 9963-08-08
+ date: 9964-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/i18n/en.yaml b/i18n/en.yaml
index 9987590e..73afa73c 100644
--- a/i18n/en.yaml
+++ b/i18n/en.yaml
@@ -66,6 +66,7 @@ sharing:
pinterest: "Pin on Pinterest"
reddit: "Submit to Reddit"
twitter: "Tweet on Twitter"
+ bluesky: "Post on Bluesky"
shortcode:
recent_articles: "Recent"
diff --git a/i18n/uk.yaml b/i18n/uk.yaml
new file mode 100644
index 00000000..74655910
--- /dev/null
+++ b/i18n/uk.yaml
@@ -0,0 +1,78 @@
+global:
+ language: "UK"
+
+article:
+ anchor_label: "Закладка"
+ date: "{{ .Date }}"
+ date_updated: "Оновлено {{ .Date }}"
+ draft: "Чернетка"
+ edit_title: "Редагувати"
+ reading_time:
+ one: "{{ .Count }} хвилину"
+ few: "{{ .Count }} хвилини"
+ many: "{{ .Count }} хвилин"
+ other: "{{ .Count }} хвилини"
+ reading_time_title: "Прочитаєте за"
+ table_of_contents: "Зміст"
+ word_count:
+ one: "{{ .Count }} слово"
+ few: "{{ .Count }} слова"
+ many: "{{ .Count }} слів"
+ other: "{{ .Count }} слова"
+ views:
+ one: "{{ .Count }} view"
+ other: "{{ .Count }} views"
+ likes:
+ one: "{{ .Count }} like"
+ other: "{{ .Count }} likes"
+ part_of_series: "This article is part of a series."
+ part: "Part"
+ this_article: "This Article"
+ related_articles: "Related"
+ zen_mode_title:
+ enable: "Enable zen mode"
+ disable: "Disable zen mode"
+
+author:
+ byline_title: "Автор"
+
+code:
+ copy: "Копіювати"
+ copied: "Скопійовано"
+
+error:
+ 404_title: "Немає такої сторінки :confused:"
+ 404_error: "Помилка 404"
+ 404_description: "Здається, сторінки, яка вам потрібна, не існує."
+
+footer:
+ dark_appearance: "Увімкнути темний режим"
+ light_appearance: "Увімкнути світлий режим"
+ powered_by: "Сайт працює на рушії {{ .Hugo }} зі стилем {{ .Theme }}"
+
+list:
+ externalurl_title: "Зовнішнє посилання"
+ no_articles: "Дописів поки що немає"
+
+nav:
+ scroll_to_top_title: "Повернутися на початок сторінки"
+ skip_to_main: "До тексту"
+
+search:
+ open_button_title: "Шукати (/)"
+ close_button_title: "Закрити (Esc)"
+ input_placeholder: "Введіть запит тут"
+
+sharing:
+ email: "Надіслати електронною поштою"
+ facebook: "Поширити на Facebook"
+ linkedin: "Поширити на LinkedIn"
+ pinterest: "Зберегти на Pinterest"
+ reddit: "Опублікувати на Reddit"
+ twitter: "Поширити на Twitter"
+
+shortcode:
+ recent_articles: "Недавні дописи"
+
+recent:
+ show_more: "Show More"
diff --git a/layouts/shortcodes/codeimporter.html b/layouts/shortcodes/codeimporter.html
index 493f4448..952c28a8 100644
--- a/layouts/shortcodes/codeimporter.html
+++ b/layouts/shortcodes/codeimporter.html
@@ -1,8 +1,27 @@
{{ $url := .Get "url" }}
{{ $type := .Get "type" }}
+{{ $startLine := .Get "startLine" | default 1 | int }}
+{{ $startLine = sub $startLine 1 }}
+{{ $endLine := .Get "endLine" | default -1 | int }}
+{{ $selectedLines := slice }}
{{ with resources.GetRemote (urls.Parse $url) }}
-{{ $codeBlock := printf "```%s\n%s\n```" $type .Content }}
-{{ $codeBlock | markdownify }}
+ {{ $lines := split .Content "\n" }}
+ {{ $totalLine := $lines | len }}
+
+ {{ if ne $endLine -1 }}
+ {{ $endLine = math.Min $endLine $totalLine }}
+ {{ else }}
+ {{ $endLine = $totalLine }}
+ {{ end }}
+
+ {{ if gt $startLine $endLine }}
+ {{ errorf "Code Importer Shortcode - startLine is greater than endLine" . }}
+ {{ end }}
+
+ {{ $selectedLines := first $endLine $lines }}
+ {{ $selectedLines = after $startLine $selectedLines }}
+ {{ $codeBlock := printf "```%s\n%s\n```" $type (delimit $selectedLines "\n") }}
+ {{ $codeBlock | markdownify }}
{{ else }}
-{{ errorf "Code Importer Shortcode - Unable to get remote resource" . }}
+ {{ errorf "Code Importer Shortcode - Unable to get remote resource" . }}
{{ end }}
diff --git a/package-lock.json b/package-lock.json
index 107b8fb0..e6246585 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,16 +1,16 @@
{
"name": "hugo-blowfish-theme",
- "version": "2.71.0",
+ "version": "2.72.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "hugo-blowfish-theme",
- "version": "2.71.0",
+ "version": "2.72.0",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {
- "@headlessui/react": "^2.0.4",
+ "@headlessui/react": "^2.1.0",
"@heroicons/react": "^2.1.4",
"@iamtraction/google-translate": "^2.0.1",
"@tailwindcss/forms": "^0.5.7",
@@ -28,7 +28,7 @@
"prettier": "^3.3.2",
"prettier-plugin-go-template": "^0.0.15",
"prettier-plugin-tailwindcss": "^0.6.5",
- "puppeteer": "^22.11.2",
+ "puppeteer": "^22.12.0",
"rimraf": "^5.0.7",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.4",
@@ -99,29 +99,29 @@
}
},
"node_modules/@floating-ui/core": {
- "version": "1.6.1",
- "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.1.tgz",
- "integrity": "sha512-42UH54oPZHPdRHdw6BgoBD6cg/eVTmVrFcgeRDM3jbO7uxSoipVcmcIGFcA5jmOHO5apcyvBhkSKES3fQJnu7A==",
+ "version": "1.6.3",
+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.3.tgz",
+ "integrity": "sha512-1ZpCvYf788/ZXOhRQGFxnYQOVgeU+pi0i+d0Ow34La7qjIXETi6RNswGVKkA6KcDO8/+Ysu2E/CeUmmeEBDvTg==",
"dependencies": {
- "@floating-ui/utils": "^0.2.0"
+ "@floating-ui/utils": "^0.2.3"
}
},
"node_modules/@floating-ui/dom": {
- "version": "1.6.5",
- "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.5.tgz",
- "integrity": "sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==",
+ "version": "1.6.6",
+ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.6.tgz",
+ "integrity": "sha512-qiTYajAnh3P+38kECeffMSQgbvXty2VB6rS+42iWR4FPIlZjLK84E9qtLnMTLIpPz2znD/TaFqaiavMUrS+Hcw==",
"dependencies": {
"@floating-ui/core": "^1.0.0",
- "@floating-ui/utils": "^0.2.0"
+ "@floating-ui/utils": "^0.2.3"
}
},
"node_modules/@floating-ui/react": {
- "version": "0.26.13",
- "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.13.tgz",
- "integrity": "sha512-kBa9wntpugzrZ8t/4yWelvSmEKZdeTXTJzrxqyrLmcU/n1SM4nvse8yQh2e1b37rJGvtu0EplV9+IkBrCJ1vkw==",
+ "version": "0.26.18",
+ "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.18.tgz",
+ "integrity": "sha512-enDDX09Jpi3kmhcXXpvs+fvRXOfBj1jUV2KF6uDMf5HjS+SOZJzNTFUW71lKbFcxz0BkmQqwbvqdmHIxMq/fyQ==",
"dependencies": {
- "@floating-ui/react-dom": "^2.0.0",
- "@floating-ui/utils": "^0.2.0",
+ "@floating-ui/react-dom": "^2.1.0",
+ "@floating-ui/utils": "^0.2.3",
"tabbable": "^6.0.0"
},
"peerDependencies": {
@@ -130,9 +130,9 @@
}
},
"node_modules/@floating-ui/react-dom": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.9.tgz",
- "integrity": "sha512-q0umO0+LQK4+p6aGyvzASqKbKOJcAHJ7ycE9CuUvfx3s9zTHWmGJTPOIlM/hmSBfUfg/XfY5YhLBLR/LHwShQQ==",
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.1.tgz",
+ "integrity": "sha512-4h84MJt3CHrtG18mGsXuLCHMrug49d7DFkU0RMIyshRveBeyV2hmV/pDaF2Uxtu8kgq5r46llp5E5FQiR0K2Yg==",
"dependencies": {
"@floating-ui/dom": "^1.0.0"
},
@@ -142,18 +142,18 @@
}
},
"node_modules/@floating-ui/utils": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.2.tgz",
- "integrity": "sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw=="
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.3.tgz",
+ "integrity": "sha512-XGndio0l5/Gvd6CLIABvsav9HHezgDFFhDfHk1bvLfr9ni8dojqLSvBbotJEjmIwNHL7vK4QzBJTdBRoB+c1ww=="
},
"node_modules/@headlessui/react": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@headlessui/react/-/react-2.0.4.tgz",
- "integrity": "sha512-16d/rOLeYsFsmPlRmXGu8DCBzrWD0zV1Ccx3n73wN87yFu8Y9+X04zflv8EJEt9TAYRyLKOmQXUnOnqQl6NgpA==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@headlessui/react/-/react-2.1.0.tgz",
+ "integrity": "sha512-/MizQk2xqR5ELkmCI1xWy3VgJULvR8gcAXtZhcK7sY53TNRCPeMdeODEXKSv9LPSSRlEAyzW1+NGJiaXq6dLRw==",
"dependencies": {
- "@floating-ui/react": "^0.26.13",
- "@react-aria/focus": "^3.16.2",
- "@react-aria/interactions": "^3.21.1",
+ "@floating-ui/react": "^0.26.16",
+ "@react-aria/focus": "^3.17.1",
+ "@react-aria/interactions": "^3.21.3",
"@tanstack/react-virtual": "3.5.0"
},
"engines": {
@@ -319,13 +319,13 @@
}
},
"node_modules/@react-aria/focus": {
- "version": "3.17.0",
- "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.0.tgz",
- "integrity": "sha512-aRzBw1WTUkcIV3xFrqPA6aB8ZVt3XyGpTaSHAypU0Pgoy2wRq9YeJYpbunsKj9CJmskuffvTqXwAjTcaQish1Q==",
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
"dependencies": {
- "@react-aria/interactions": "^3.21.2",
- "@react-aria/utils": "^3.24.0",
- "@react-types/shared": "^3.23.0",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@swc/helpers": "^0.5.0",
"clsx": "^2.0.0"
},
@@ -334,13 +334,13 @@
}
},
"node_modules/@react-aria/interactions": {
- "version": "3.21.2",
- "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.2.tgz",
- "integrity": "sha512-Ju706DtoEmI/2vsfu9DCEIjDqsRBVLm/wmt2fr0xKbBca7PtmK8daajxFWz+eTq+EJakvYfLr7gWgLau9HyWXg==",
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
"dependencies": {
- "@react-aria/ssr": "^3.9.3",
- "@react-aria/utils": "^3.24.0",
- "@react-types/shared": "^3.23.0",
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -348,9 +348,9 @@
}
},
"node_modules/@react-aria/ssr": {
- "version": "3.9.3",
- "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.3.tgz",
- "integrity": "sha512-5bUZ93dmvHFcmfUcEN7qzYe8yQQ8JY+nHN6m9/iSDCQ/QmCiE0kWXYwhurjw5ch6I8WokQzx66xKIMHBAa4NNA==",
+ "version": "3.9.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.4.tgz",
+ "integrity": "sha512-4jmAigVq409qcJvQyuorsmBR4+9r3+JEC60wC+Y0MZV0HCtTmm8D9guYXlJMdx0SSkgj0hHAyFm/HvPNFofCoQ==",
"dependencies": {
"@swc/helpers": "^0.5.0"
},
@@ -362,13 +362,13 @@
}
},
"node_modules/@react-aria/utils": {
- "version": "3.24.0",
- "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.24.0.tgz",
- "integrity": "sha512-JAxkPhK5fCvFVNY2YG3TW3m1nTzwRcbz7iyTSkUzLFat4N4LZ7Kzh7NMHsgeE/oMOxd8zLY+XsUxMu/E/2GujA==",
+ "version": "3.24.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.24.1.tgz",
+ "integrity": "sha512-O3s9qhPMd6n42x9sKeJ3lhu5V1Tlnzhu6Yk8QOvDuXf7UGuUjXf9mzfHJt1dYzID4l9Fwm8toczBzPM9t0jc8Q==",
"dependencies": {
- "@react-aria/ssr": "^3.9.3",
- "@react-stately/utils": "^3.10.0",
- "@react-types/shared": "^3.23.0",
+ "@react-aria/ssr": "^3.9.4",
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/shared": "^3.23.1",
"@swc/helpers": "^0.5.0",
"clsx": "^2.0.0"
},
@@ -377,9 +377,9 @@
}
},
"node_modules/@react-stately/utils": {
- "version": "3.10.0",
- "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.0.tgz",
- "integrity": "sha512-nji2i9fTYg65ZWx/3r11zR1F2tGya+mBubRCbMTwHyRnsSLFZaeq/W6lmrOyIy1uMJKBNKLJpqfmpT4x7rw6pg==",
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.1.tgz",
+ "integrity": "sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==",
"dependencies": {
"@swc/helpers": "^0.5.0"
},
@@ -388,9 +388,9 @@
}
},
"node_modules/@react-types/shared": {
- "version": "3.23.0",
- "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.23.0.tgz",
- "integrity": "sha512-GQm/iPiii3ikcaMNR4WdVkJ4w0mKtV3mLqeSfSqzdqbPr6vONkqXbh3RhPlPmAJs1b4QHnexd/wZQP3U9DHOwQ==",
+ "version": "3.23.1",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.23.1.tgz",
+ "integrity": "sha512-5d+3HbFDxGZjhbMBeFHRQhexMFt4pUce3okyRtUVKbbedQFUrtXSBg9VszgF2RTeQDKDkMCIQDtz5ccP/Lk1gw==",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
@@ -506,9 +506,9 @@
"dev": true
},
"node_modules/@types/node": {
- "version": "20.14.6",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.6.tgz",
- "integrity": "sha512-JbA0XIJPL1IiNnU7PFxDXyfAwcwVVrOoqyzzyQTyMeVhBzkJVMSkC1LlVsRQ2lpqiY4n6Bb9oCS6lzDKVQxbZw==",
+ "version": "20.14.9",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.9.tgz",
+ "integrity": "sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==",
"dev": true,
"optional": true,
"dependencies": {
@@ -878,9 +878,9 @@
}
},
"node_modules/chromium-bidi": {
- "version": "0.5.23",
- "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.23.tgz",
- "integrity": "sha512-1o/gLU9wDqbN5nL2MtfjykjOuighGXc3/hnWueO1haiEoFgX8h5vbvcA4tgdQfjw1mkZ1OEF4x/+HVeqEX6NoA==",
+ "version": "0.5.24",
+ "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.24.tgz",
+ "integrity": "sha512-5xQNN2SVBdZv4TxeMLaI+PelrnZsHDhn8h2JtyriLr+0qHcZS8BMuo93qN6J1VmtmrgYP+rmcLHcbpnA8QJh+w==",
"dev": true,
"dependencies": {
"mitt": "3.0.1",
@@ -3470,16 +3470,16 @@
}
},
"node_modules/puppeteer": {
- "version": "22.11.2",
- "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-22.11.2.tgz",
- "integrity": "sha512-8fjdQSgW0sq7471ftca24J7sXK+jXZ7OW7Gx+NEBFNyXrcTiBfukEI46gNq6hiMhbLEDT30NeylK/1ZoPdlKSA==",
+ "version": "22.12.0",
+ "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-22.12.0.tgz",
+ "integrity": "sha512-kyUYI12SyJIjf9UGTnHfhNMYv4oVK321Jb9QZDBiGVNx5453SplvbdKI7UrF+S//3RtCneuUFCyHxnvQXQjpxg==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
"@puppeteer/browsers": "2.2.3",
"cosmiconfig": "9.0.0",
"devtools-protocol": "0.0.1299070",
- "puppeteer-core": "22.11.2"
+ "puppeteer-core": "22.12.0"
},
"bin": {
"puppeteer": "lib/esm/puppeteer/node/cli.js"
@@ -3489,13 +3489,13 @@
}
},
"node_modules/puppeteer-core": {
- "version": "22.11.2",
- "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-22.11.2.tgz",
- "integrity": "sha512-vQo+YDuePyvj+92Z9cdtxi/HalKf+k/R4tE80nGtQqJRNqU81eHaHkbVfnLszdaLlvwFF5tipnnSCzqWlEddtw==",
+ "version": "22.12.0",
+ "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-22.12.0.tgz",
+ "integrity": "sha512-9gY+JwBW/Fp3/x9+cOGK7ZcwqjvtvY2xjqRqsAA0B3ZFMzBauVTSZ26iWTmvOQX2sk78TN/rd5rnetxVxmK5CQ==",
"dev": true,
"dependencies": {
"@puppeteer/browsers": "2.2.3",
- "chromium-bidi": "0.5.23",
+ "chromium-bidi": "0.5.24",
"debug": "4.3.5",
"devtools-protocol": "0.0.1299070",
"ws": "8.17.1"
diff --git a/package.json b/package.json
index fa06a9be..5d8d29df 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "hugo-blowfish-theme",
- "version": "2.71.1",
+ "version": "2.72.0",
"description": "Blowfish theme for Hugo.",
"scripts": {
"postinstall": "vendor-copy",
@@ -45,7 +45,7 @@
"prettier": "^3.3.2",
"prettier-plugin-go-template": "^0.0.15",
"prettier-plugin-tailwindcss": "^0.6.5",
- "puppeteer": "^22.11.2",
+ "puppeteer": "^22.12.0",
"rimraf": "^5.0.7",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.4",
@@ -109,7 +109,7 @@
}
],
"dependencies": {
- "@headlessui/react": "^2.0.4",
+ "@headlessui/react": "^2.1.0",
"@heroicons/react": "^2.1.4",
"@iamtraction/google-translate": "^2.0.1",
"@tailwindcss/forms": "^0.5.7",
diff --git a/release-versions/hugo-latest.txt b/release-versions/hugo-latest.txt
index df74356c..f5ad1f8f 100644
--- a/release-versions/hugo-latest.txt
+++ b/release-versions/hugo-latest.txt
@@ -1 +1 @@
-v0.127.0
+v0.128.0