diff --git a/config.toml b/config.toml
index 712f2832d..38161e351 100644
--- a/config.toml
+++ b/config.toml
@@ -2,4 +2,4 @@
[module.hugoVersion]
extended = true
min = "0.87.0"
-max = "0.125.4"
+max = "0.125.7"
diff --git a/exampleSite/content/docs/shortcodes/index.it.md b/exampleSite/content/docs/shortcodes/index.it.md
index 701f18e3c..7ead8a520 100644
--- a/exampleSite/content/docs/shortcodes/index.it.md
+++ b/exampleSite/content/docs/shortcodes/index.it.md
@@ -77,10 +77,10 @@ This is an error!
**Example:**
```md
-{{* article link="/it/docs/welcome/" */>}}
+{{* article link="/docs/welcome/" */>}}
```
-{{< article link="/it/docs/welcome/" >}}
+{{< article link="/docs/welcome/" >}}
@@ -188,6 +188,31 @@ You can see some additional Chart.js examples on the [charts samples]({{< ref "c
+## Code Importer
+
+This shortcode is for importing code from external sources easily without copying and pasting.
+
+
+| Parameter | Description |
+| --------- | ------------------------------------------------------- |
+| `url` | **Required** URL to an externally hosted code file. |
+| `type` | Code type used for syntax highlighting. |
+
+
+
+
+
+**Example:**
+
+```md
+{{* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" */>}}
+
+```
+{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+
+
+
+
## Figure
Blowfish includes a `figure` shortcode for adding images to content. The shortcode replaces the base Hugo functionality in order to provide additional performance benefits.
@@ -614,6 +639,10 @@ With other shortcodes
{{* /gallery */>}}
{{* /timelineItem */>}}
+{{* timelineItem icon="code" header="Another Awesome Header"*/>}}
+{{* github repo="nunocoracao/blowfish" */>}}
+{{* /timelineItem */>}}
+
{{* /timeline */>}}
```
@@ -646,7 +675,9 @@ With other shortcodes
{{< /gallery >}}
{{ timelineItem >}}
-
+{{< timelineItem icon="code" header="Another Awesome Header">}}
+{{< github repo="nunocoracao/blowfish" >}}
+{{ timelineItem >}}
{{ timeline >}}
@@ -738,17 +769,39 @@ consectetur adipiscing elit.
A shortcut to embed youtube videos using the [lite-youtube-embed](https://github.com/paulirish/lite-youtube-embed) library. This library is a lightweight alternative to the standard youtube embeds, and it's designed to be faster and more efficient.
-| Parameter | Description |
-| --------- | ----------------------------------- |
-| `id` | [String] Youtube video id to embed. |
-| `label` | [String] Label for the video |
+| Parameter | Description |
+| --------- | -------------------------------------------- |
+| `id` | [String] Youtube video id to embed. |
+| `label` | [String] Label for the video |
+| `params` | [String] Extras parameters for video playing |
**Example 1:**
```md
{{* youtubeLite id="SgXhGb-7QbU" label="Blowfish-tools demo" */>}}
-
```
{{< youtubeLite id="SgXhGb-7QbU" label="Blowfish-tools demo" >}}
+
+**Example 2:**
+
+You can use all of Youtube's [player parameters](https://developers.google.com/youtube/player_parameters#Parameters) for the `params` variable, as demonstrated below:
+
+> This video will start after 130 seconds (2m10)
+
+```md
+{{* youtubeLite id="SgXhGb-7QbU" label="Blowfish-tools demo" params="start=130" */>}}
+```
+
+> This video will not have UI controls, will start playing at 130 seconds and will stop 10 seconds later.
+
+To concatenate multiple options as shown below, you need to add the `&` character between them.
+
+```md
+{{* youtubeLite id="SgXhGb-7QbU" label="Blowfish-tools demo" params="start=130&end=10&controls=0" */>}}
+```
+
+{{< youtubeLite id="SgXhGb-7QbU" label="Blowfish-tools demo" params="start=130&end=10&controls=0" >}}
+
+More informations can be found on the [youtubeLite GitHub repo](https://github.com/paulirish/lite-youtube-embed/blob/master/readme.md#custom-player-parameters) and Youtube's [player parameters](https://developers.google.com/youtube/player_parameters#Parameters) page.
diff --git a/exampleSite/content/docs/shortcodes/index.ja.md b/exampleSite/content/docs/shortcodes/index.ja.md
index a4153bf08..7ead8a520 100644
--- a/exampleSite/content/docs/shortcodes/index.ja.md
+++ b/exampleSite/content/docs/shortcodes/index.ja.md
@@ -77,10 +77,10 @@ This is an error!
**Example:**
```md
-{{* article link="/ja/docs/welcome/" */>}}
+{{* article link="/docs/welcome/" */>}}
```
-{{< article link="/ja/docs/welcome/" >}}
+{{< article link="/docs/welcome/" >}}
@@ -188,6 +188,31 @@ You can see some additional Chart.js examples on the [charts samples]({{< ref "c
+## Code Importer
+
+This shortcode is for importing code from external sources easily without copying and pasting.
+
+
+| Parameter | Description |
+| --------- | ------------------------------------------------------- |
+| `url` | **Required** URL to an externally hosted code file. |
+| `type` | Code type used for syntax highlighting. |
+
+
+
+
+
+**Example:**
+
+```md
+{{* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" */>}}
+
+```
+{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+
+
+
+
## Figure
Blowfish includes a `figure` shortcode for adding images to content. The shortcode replaces the base Hugo functionality in order to provide additional performance benefits.
@@ -614,6 +639,10 @@ With other shortcodes
{{* /gallery */>}}
{{* /timelineItem */>}}
+{{* timelineItem icon="code" header="Another Awesome Header"*/>}}
+{{* github repo="nunocoracao/blowfish" */>}}
+{{* /timelineItem */>}}
+
{{* /timeline */>}}
```
@@ -646,7 +675,9 @@ With other shortcodes
{{< /gallery >}}
{{ timelineItem >}}
-
+{{< timelineItem icon="code" header="Another Awesome Header">}}
+{{< github repo="nunocoracao/blowfish" >}}
+{{ timelineItem >}}
{{ timeline >}}
@@ -738,17 +769,39 @@ consectetur adipiscing elit.
A shortcut to embed youtube videos using the [lite-youtube-embed](https://github.com/paulirish/lite-youtube-embed) library. This library is a lightweight alternative to the standard youtube embeds, and it's designed to be faster and more efficient.
-| Parameter | Description |
-| --------- | ----------------------------------- |
-| `id` | [String] Youtube video id to embed. |
-| `label` | [String] Label for the video |
+| Parameter | Description |
+| --------- | -------------------------------------------- |
+| `id` | [String] Youtube video id to embed. |
+| `label` | [String] Label for the video |
+| `params` | [String] Extras parameters for video playing |
**Example 1:**
```md
{{* youtubeLite id="SgXhGb-7QbU" label="Blowfish-tools demo" */>}}
-
```
{{< youtubeLite id="SgXhGb-7QbU" label="Blowfish-tools demo" >}}
+
+**Example 2:**
+
+You can use all of Youtube's [player parameters](https://developers.google.com/youtube/player_parameters#Parameters) for the `params` variable, as demonstrated below:
+
+> This video will start after 130 seconds (2m10)
+
+```md
+{{* youtubeLite id="SgXhGb-7QbU" label="Blowfish-tools demo" params="start=130" */>}}
+```
+
+> This video will not have UI controls, will start playing at 130 seconds and will stop 10 seconds later.
+
+To concatenate multiple options as shown below, you need to add the `&` character between them.
+
+```md
+{{* youtubeLite id="SgXhGb-7QbU" label="Blowfish-tools demo" params="start=130&end=10&controls=0" */>}}
+```
+
+{{< youtubeLite id="SgXhGb-7QbU" label="Blowfish-tools demo" params="start=130&end=10&controls=0" >}}
+
+More informations can be found on the [youtubeLite GitHub repo](https://github.com/paulirish/lite-youtube-embed/blob/master/readme.md#custom-player-parameters) and Youtube's [player parameters](https://developers.google.com/youtube/player_parameters#Parameters) page.
diff --git a/exampleSite/content/docs/shortcodes/index.md b/exampleSite/content/docs/shortcodes/index.md
index d15f95544..7ead8a520 100644
--- a/exampleSite/content/docs/shortcodes/index.md
+++ b/exampleSite/content/docs/shortcodes/index.md
@@ -188,6 +188,31 @@ You can see some additional Chart.js examples on the [charts samples]({{< ref "c
+## Code Importer
+
+This shortcode is for importing code from external sources easily without copying and pasting.
+
+
+| Parameter | Description |
+| --------- | ------------------------------------------------------- |
+| `url` | **Required** URL to an externally hosted code file. |
+| `type` | Code type used for syntax highlighting. |
+
+
+
+
+
+**Example:**
+
+```md
+{{* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" */>}}
+
+```
+{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+
+
+
+
## Figure
Blowfish includes a `figure` shortcode for adding images to content. The shortcode replaces the base Hugo functionality in order to provide additional performance benefits.
@@ -614,6 +639,10 @@ With other shortcodes
{{* /gallery */>}}
{{* /timelineItem */>}}
+{{* timelineItem icon="code" header="Another Awesome Header"*/>}}
+{{* github repo="nunocoracao/blowfish" */>}}
+{{* /timelineItem */>}}
+
{{* /timeline */>}}
```
@@ -646,7 +675,9 @@ With other shortcodes
{{< /gallery >}}
{{ timelineItem >}}
-
+{{< timelineItem icon="code" header="Another Awesome Header">}}
+{{< github repo="nunocoracao/blowfish" >}}
+{{ timelineItem >}}
{{ timeline >}}
diff --git a/exampleSite/content/docs/shortcodes/index.zh-cn.md b/exampleSite/content/docs/shortcodes/index.zh-cn.md
index effc72589..d3e4f59a8 100644
--- a/exampleSite/content/docs/shortcodes/index.zh-cn.md
+++ b/exampleSite/content/docs/shortcodes/index.zh-cn.md
@@ -16,12 +16,12 @@ series_order: 8
`alert` 可以将其中内容输出为文章中的风格化消息框。它对于吸引读者注意您不想让读者错过的重要信息很有用。
-| 参数 | 功能 |
-| ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `icon` | **可选** 显示在左侧的图标。
**默认:** `exclaimation triangle icon` (查看[图标简码](#icon),了解有关使用图标的更多详细信息。) |
-| `iconColor` | **可选** 基本 CSS 样式中图标的颜色。
可以是十六进制值 (`#FFFFFF`) 或颜色名称 (`white`)
默认情况下由当前配色方案决定。 |
-| `cardColor` | **可选** 基本 CSS 样式中卡片背景的颜色。
可以是十六进制值 (`#FFFFFF`) 或颜色名称 (`white`)
默认情况下由当前配色方案决定。 |
-| `textColor` | **可选** 基本 CSS 样式中文本的颜色。
可以是十六进制值 (`#FFFFFF`) 或颜色名称 (`white`)
默认情况下由当前配色方案决定。 |
+| 参数 | 功能 |
+| ----------- | -------------------------------------------------------------------------------------------------------------------------------- |
+| `icon` | **可选** 显示在左侧的图标。
**默认:** `exclaimation triangle icon` (查看[图标简码](#icon),了解有关使用图标的更多详细信息。) |
+| `iconColor` | **可选** 基本 CSS 样式中图标的颜色。
可以是十六进制值 (`#FFFFFF`) 或颜色名称 (`white`)
默认情况下由当前配色方案决定。 |
+| `cardColor` | **可选** 基本 CSS 样式中卡片背景的颜色。
可以是十六进制值 (`#FFFFFF`) 或颜色名称 (`white`)
默认情况下由当前配色方案决定。 |
+| `textColor` | **可选** 基本 CSS 样式中文本的颜色。
可以是十六进制值 (`#FFFFFF`) 或颜色名称 (`white`)
默认情况下由当前配色方案决定。 |
输入内容是用 Markdown 语言编写的,因此您可以根据需要设置其格式。
@@ -69,9 +69,9 @@ This is an error!
`Article` 将把一篇文章嵌入到一个 markdown 文件中。 参数中的 `link`应该是要嵌入的文件的 `.RelPermalink`。请注意,如果简码引用其父级文件,则它不会显示任何内容。 *注意:如果您在 Blowfish(即 /blowfish/)等子文件夹中运行网站,请在链接中包含该路径。*
-| 参数 | 功能 |
-| --------- | -------------------------------------------------------- |
-| `link` | **必填** 要嵌入文章的 `.RelPermalink` |
+| 参数 | 功能 |
+| ------ | ------------------------------------- |
+| `link` | **必填** 要嵌入文章的 `.RelPermalink` |
**例如:**
@@ -125,11 +125,11 @@ Call to action
`carousel` 用于生成可交互且具有视觉吸引力的方式展示多个图像的画廊。这允许用户滑动浏览多个图像,同时仅占用单个图像的垂直空间。 所有图像均使用父组件的完整宽度并使用预定义的宽高比 `16:9` 、 `21:9` 或 `32:9` 之一显示。
-| 参数 | 功能 |
-| ------------- | ----------------------------------------------------------------------------------------------------------------- |
-| `images` | **必填** 用于匹配图像名称的正则表达式或 URL。 |
+| 参数 | 功能 |
+| ------------- | --------------------------------------------------------------------- |
+| `images` | **必填** 用于匹配图像名称的正则表达式或 URL。 |
| `aspectRatio` | **可选** 画廊的纵横比。`16-9` 、`21-9` 或`32-9` 。默认设置为`16-9` 。 |
-| `interval` | **可选** 自动滚动的时间间隔,以毫秒为单位指定。默认为`2000`(2 秒)。 |
+| `interval` | **可选** 自动滚动的时间间隔,以毫秒为单位指定。默认为`2000`(2 秒)。 |
**例1:** 16:9 宽高比和 URL 图像列表
@@ -188,6 +188,32 @@ data: {
+## Code Importer
+
+此短代码用于轻松从外部源导入代码,无需复制和粘贴
+
+
+| Parameter | Description |
+| --------- | ---------------------------------- |
+| `url` | **必需的** 外部托管代码文件的 URL. |
+| `type` | 用于语法突出显示的代码类型. |
+
+
+
+
+
+**Example:**
+
+```md
+{{* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" */>}}
+
+```
+
+{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
+
+
+
+
## Figure
Blowfish 包含一个 `figure` 简码,用于将图像添加到内容中。该简码取代了基本的 Hugo 功能,且性能更好。
@@ -197,16 +223,16 @@ Blowfish 包含一个 `figure` 简码,用于将图像添加到内容中。该
`figure` 简码接受六个参数:
-| 参数 | 功能 |
-| --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| 参数 | 功能 |
+| --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `src` | **必填** 图像的本地路径/文件名或 URL。当提供路径和文件名时,主题将尝试使用以下查找顺序来查找图像:首先,作为与页面绑定的[页面资源](https://gohugo.io/content-management/page-resources/);然后是 `assets/` 目录中的文件;最后是,`static/`目录中的文件。 |
-| `alt` | 图像的[替代文本描述](https://moz.com/learn/seo/alt-text)。 |
-| `caption` | Markdown 格式的图像标题,将显示在图像下方。 |
-| `class` | 应用于图像的其他 CSS 类。 |
-| `href` | 图像应链接到的 URL。 |
-| `target` | `href` URL 的目标属性。 |
-| `nozoom` | `nozoom=true` 会禁用图像`缩放`功能。与 `href` 结合使用十分有用。 |
-| `default` | 用于恢复默认 Hugo `figure` 行为的特殊参数。只需提供`default=true`,然后使用正常的 [Hugo 简码语法](https://gohugo.io/content-management/shortcodes/#figure)。 |
+| `alt` | 图像的[替代文本描述](https://moz.com/learn/seo/alt-text)。 |
+| `caption` | Markdown 格式的图像标题,将显示在图像下方。 |
+| `class` | 应用于图像的其他 CSS 类。 |
+| `href` | 图像应链接到的 URL。 |
+| `target` | `href` URL 的目标属性。 |
+| `nozoom` | `nozoom=true` 会禁用图像`缩放`功能。与 `href` 结合使用十分有用。 |
+| `default` | 用于恢复默认 Hugo `figure` 行为的特殊参数。只需提供`default=true`,然后使用正常的 [Hugo 简码语法](https://gohugo.io/content-management/shortcodes/#figure)。 |
Blowfish 还支持使用标准 Markdown 语法自动转换图像。只需使用以下格式,主题将自动处理:
@@ -297,9 +323,9 @@ Blowfish 还支持使用标准 Markdown 语法自动转换图像。只需使用
`github` 允许您快速链接到 github Repo,同时显示和更新有关它的实时统计信息,例如它的 star 和 fork 数。
-| 参数 | 功能 |
-| --------- | ----------------------------------------------------- |
-| `repo` | [String] 格式为 `username/repo` 的 github repo |
+| 参数 | 功能 |
+| ------ | ---------------------------------------------- |
+| `repo` | [String] 格式为 `username/repo` 的 github repo |
**例1:**
@@ -320,9 +346,9 @@ Blowfish 还支持使用标准 Markdown 语法自动转换图像。只需使用
最后,只要 `api/v4/projects/` 可用,就可以提供自定义 GitLab 实例 URL,从而使此简码能够显示大多数自托管/企业组织。
-| 参数 | 功能 |
-| ----------- | ----------------------------------------------------------------------- |
-| `projectID` | [String] gitlab 数字项目ID |
+| 参数 | 功能 |
+| ----------- | ----------------------------------------------------------- |
+| `projectID` | [String] gitlab 数字项目ID |
| `baseURL` | [String] 可选 gitlab 实例 URL,默认为 `https://gitlab.com/` |
@@ -386,9 +412,9 @@ Blowfish 还支持使用标准 Markdown 语法自动转换图像。只需使用
-| 参数 | 功能 |
-| --------- | --------------------------------------- |
-| `icon` | **可选** 关键字中使用的图标 |
+| 参数 | 功能 |
+| ------ | --------------------------- |
+| `icon` | **可选** 关键字中使用的图标 |
输入内容是用 Markdown 编写的,因此您可以根据需要设置其格式。
@@ -443,12 +469,12 @@ When life gives you lemons, make lemonade.
`List` 将显示最近文章的列表。此简码需要一个限制值来约束列表。此外,它还支持输入 `where` 和 `value` ,以便按参数过滤文章。请注意,此简码不会显示其父页面,但会计入限制值。
-| 参数 | 功能 |
-| ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `limit` | **必填** 要显示的最近文章数量。 |
-| `title` | **可选** 列表标题,默认为 `Recent` |
-| `cardView` | **可选** 列表启用卡片视图,默认为 `false` |
-| `where` | 用于筛选文章的变量,例如 `Type` |
+| 参数 | 功能 |
+| ---------- | ------------------------------------------------------------------------------------------------------ |
+| `limit` | **必填** 要显示的最近文章数量。 |
+| `title` | **可选** 列表标题,默认为 `Recent` |
+| `cardView` | **可选** 列表启用卡片视图,默认为 `false` |
+| `where` | 用于筛选文章的变量,例如 `Type` |
| `value` | 需要与 `where` 中定义的参数匹配的值,以进行文章查询,例如对于 `where` == `Type`,可以找到文章 `sample` |
{{< alert >}}
@@ -504,9 +530,9 @@ When life gives you lemons, make lemonade.
此简码允许您从外部源导入 Markdown 文件。这对于包含来自其他仓库或网站的内容非常有用,而无需复制和粘贴内容。
-| 参数 | 功能 |
-| --------- | ------------------------------------------------------- |
-| `url` | **必填** 外部托管 Markdown 文件的 URL。 |
+| 参数 | 功能 |
+| ----- | --------------------------------------- |
+| `url` | **必填** 外部托管 Markdown 文件的 URL。 |
@@ -572,12 +598,12 @@ B-->C[Profit]
`timeline` 创建了一个可视化时间线,用于展示专业经验、项目成就等。 `timeline` 简码依赖于 `timelineItem` 子简码来定义主时间线中的每个项目。每个项目可以具有以下属性。
-| 参数 | 功能 |
-| ----------- | -------------------------------------------- |
+| 参数 | 功能 |
+| ----------- | ------------------------ |
| `icon` | 要在时间线中使用的图标。 |
-| `header` | 每个条目的标题 |
-| `badge` | 放置在右上角徽章内的文本 |
-| `subheader` | 每个条目的副标题 |
+| `header` | 每个条目的标题 |
+| `badge` | 放置在右上角徽章内的文本 |
+| `subheader` | 每个条目的副标题 |
@@ -613,6 +639,10 @@ With other shortcodes
{{* /gallery */>}}
{{* /timelineItem */>}}
+{{* timelineItem icon="code" header="Another Awesome Header"*/>}}
+{{* github repo="nunocoracao/blowfish" */>}}
+{{* /timelineItem */>}}
+
{{* /timeline */>}}
```
@@ -644,6 +674,9 @@ With other shortcodes
{{< /gallery >}}
+{{< timelineItem icon="code" header="Another Awesome Header">}}
+{{< github repo="nunocoracao/blowfish" >}}
+{{ timelineItem >}}
{{ timelineItem >}}
{{ timeline >}}
@@ -658,17 +691,17 @@ With other shortcodes
Blowfish 使用简码实现 TypeIt 功能的子集。在 `typeit` 简码中编写文本,并使用以下参数来配置您想要的行为。
-| 参数 | 功能 |
-| ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `tag` | [String] 将用于呈现字符串的 `html` 标签。 |
-| `classList` | [String] 应用于 `html` 元素的 `css` 类列表。 |
-| `initialString` | [String] 将显示为先写入并将被替换的初始字符串。 |
-| `speed` | [number] 每步之间的打字速度,以毫秒为单位。 |
-| `lifeLike` | [boolean] 使打字速度不规律,就像真人在打字一样。 |
-| `startDelay` | [number] 插件在初始化后到开始输入的延迟时间。 |
-| `breakLines` | [boolean] 将多个字符串换行输出 (true),或者将它们删除并替换 (false)。 |
+| 参数 | 功能 |
+| ------------------ | ------------------------------------------------------------------------- |
+| `tag` | [String] 将用于呈现字符串的 `html` 标签。 |
+| `classList` | [String] 应用于 `html` 元素的 `css` 类列表。 |
+| `initialString` | [String] 将显示为先写入并将被替换的初始字符串。 |
+| `speed` | [number] 每步之间的打字速度,以毫秒为单位。 |
+| `lifeLike` | [boolean] 使打字速度不规律,就像真人在打字一样。 |
+| `startDelay` | [number] 插件在初始化后到开始输入的延迟时间。 |
+| `breakLines` | [boolean] 将多个字符串换行输出 (true),或者将它们删除并替换 (false)。 |
| `waitUntilVisible` | [boolean] 决定脚本在网站加载时启动还是在目标元素可见时启动。默认为 `true` |
-| `loop` | [boolean] 字符串动画是否会循环 |
+| `loop` | [boolean] 字符串动画是否会循环 |
@@ -737,10 +770,10 @@ consectetur adipiscing elit.
使用 [lite-youtube-embed](https://github.com/paulirish/lite-youtube-embed) 库嵌入 YouTube 视频的简码。该库是 YouTube 嵌入播放器的轻量级替代品,其设计速度更快、更高效。
-| 参数 | 功能 |
-| --------- | ----------------------------------- |
-| `id` | [String] 要嵌入的 YouTube 视频 ID。 |
-| `label` | [String] 视频的标签 |
+| 参数 | 功能 |
+| ------- | ----------------------------------- |
+| `id` | [String] 要嵌入的 YouTube 视频 ID。 |
+| `label` | [String] 视频的标签 |
**例1:**
diff --git a/exampleSite/content/users/50-nuances-octets.fr/feature.jpg b/exampleSite/content/users/50-nuances-octets.fr/feature.jpg
index 1c8278ad1..5603e3c8c 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 85c97984f..aee0e35f6 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: 9958-08-08
+ date: 9959-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 168552d18..e57d09f84 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: 9958-08-08
+ date: 9959-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 a42fe99b1..6a86e28b1 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: 9958-08-08
+ date: 9959-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 bde2bd082..26a25d3bf 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: 9958-08-08
+ date: 9959-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 69854dbfd..2559c0289 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 9c52a5ccb..ecddc552f 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: 9921-08-08
+ date: 9923-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 7689c10fe..ef9039217 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: 9921-08-08
+ date: 9923-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 1805a1fa2..3120ea98a 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: 9921-08-08
+ date: 9923-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 f21c8df4d..3e2bb405a 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: 9921-08-08
+ date: 9923-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/BoringTech.net/feature.jpg b/exampleSite/content/users/BoringTech.net/feature.jpg
index 5de22a37d..85515d8e2 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 9b2e4b0fc..5172f6957 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: 9936-08-08
+ date: 9937-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 6053d72f5..3c4348f56 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: 9936-08-08
+ date: 9937-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 8f7da899d..eaed54382 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: 9936-08-08
+ date: 9937-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 f5037d2bc..4e8c01a11 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: 9936-08-08
+ date: 9937-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/DXPetti.com/feature.jpg b/exampleSite/content/users/DXPetti.com/feature.jpg
index b6e74cc11..75e889383 100644
Binary files a/exampleSite/content/users/DXPetti.com/feature.jpg and b/exampleSite/content/users/DXPetti.com/feature.jpg differ
diff --git a/exampleSite/content/users/DXPetti.com/index.it.md b/exampleSite/content/users/DXPetti.com/index.it.md
index bca99e1f2..ddb14afda 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: 9930-08-08
+ date: 9932-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 3fb038f18..d514c7519 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: 9930-08-08
+ date: 9932-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 28f7ed785..3605c3026 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: 9930-08-08
+ date: 9932-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 fee5e2fe1..16184cfb4 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: 9930-08-08
+ date: 9932-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 565fc9e05..618ff3373 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 8096efe67..7347998ae 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: 9923-08-08
+ date: 9925-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 3fce03852..a82cf1654 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: 9923-08-08
+ date: 9925-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 9c5af15aa..059b25645 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: 9923-08-08
+ date: 9925-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 0a95b2bd9..d71b248db 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: 9923-08-08
+ date: 9925-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/Synaptic Sugar/feature.jpg b/exampleSite/content/users/Synaptic Sugar/feature.jpg
new file mode 100644
index 000000000..f010644d7
Binary files /dev/null and b/exampleSite/content/users/Synaptic Sugar/feature.jpg differ
diff --git a/exampleSite/content/users/Synaptic Sugar/index.it.md b/exampleSite/content/users/Synaptic Sugar/index.it.md
new file mode 100644
index 000000000..c824b2665
--- /dev/null
+++ b/exampleSite/content/users/Synaptic Sugar/index.it.md
@@ -0,0 +1,14 @@
+---
+ title: "Synaptic Sugar"
+ tags: [Sviluppatore di videogiochi]
+ externalUrl: "https://synapticsugar.games"
+ date: 9921-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.ja.md b/exampleSite/content/users/Synaptic Sugar/index.ja.md
new file mode 100644
index 000000000..8074a652f
--- /dev/null
+++ b/exampleSite/content/users/Synaptic Sugar/index.ja.md
@@ -0,0 +1,14 @@
+---
+ title: "Synaptic Sugar"
+ tags: [ビデオゲーム開発者]
+ externalUrl: "https://synapticsugar.games"
+ date: 9921-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.md b/exampleSite/content/users/Synaptic Sugar/index.md
new file mode 100644
index 000000000..e9e4567cd
--- /dev/null
+++ b/exampleSite/content/users/Synaptic Sugar/index.md
@@ -0,0 +1,13 @@
+---
+ title: "Synaptic Sugar"
+ tags: [Videogame Developer]
+ externalUrl: "https://synapticsugar.games"
+ date: 9921-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.zh-cn.md b/exampleSite/content/users/Synaptic Sugar/index.zh-cn.md
new file mode 100644
index 000000000..5a98a1b01
--- /dev/null
+++ b/exampleSite/content/users/Synaptic Sugar/index.zh-cn.md
@@ -0,0 +1,14 @@
+---
+ title: "Synaptic Sugar"
+ tags: [视频游戏开发商]
+ externalUrl: "https://synapticsugar.games"
+ date: 9921-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
+
diff --git a/exampleSite/content/users/aakashnand.com/feature.jpg b/exampleSite/content/users/aakashnand.com/feature.jpg
index 4e14b8064..23b166734 100644
Binary files a/exampleSite/content/users/aakashnand.com/feature.jpg and b/exampleSite/content/users/aakashnand.com/feature.jpg differ
diff --git a/exampleSite/content/users/aakashnand.com/index.it.md b/exampleSite/content/users/aakashnand.com/index.it.md
index 0396a831d..09be38730 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: 9925-08-08
+ date: 9927-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 79d998e77..a6788ce43 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: 9925-08-08
+ date: 9927-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 0aebc66ef..11ffbdfd2 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: 9925-08-08
+ date: 9927-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 f32065370..7eaace8aa 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: 9925-08-08
+ date: 9927-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 377d24679..683f585ad 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: 9946-08-08
+ date: 9947-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 e012e56ce..b39a1ad48 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: 9946-08-08
+ date: 9947-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 8b3f381d0..21913ea68 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: 9946-08-08
+ date: 9947-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 777a320f7..70522d10a 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: 9946-08-08
+ date: 9947-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/adir1.com/index.it.md b/exampleSite/content/users/adir1.com/index.it.md
index 23c5ced47..7dfaa8f16 100644
--- a/exampleSite/content/users/adir1.com/index.it.md
+++ b/exampleSite/content/users/adir1.com/index.it.md
@@ -2,7 +2,7 @@
title: "adir1.com"
tags: [Sito personale]
externalUrl: "https://adir1.com/"
- date: 9977-08-08
+ date: 9978-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/adir1.com/index.ja.md b/exampleSite/content/users/adir1.com/index.ja.md
index 316725f26..d3d7b763c 100644
--- a/exampleSite/content/users/adir1.com/index.ja.md
+++ b/exampleSite/content/users/adir1.com/index.ja.md
@@ -2,7 +2,7 @@
title: "adir1.com"
tags: [個人サイト]
externalUrl: "https://adir1.com/"
- date: 9977-08-08
+ date: 9978-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/adir1.com/index.md b/exampleSite/content/users/adir1.com/index.md
index dc978220a..3afd3fa33 100644
--- a/exampleSite/content/users/adir1.com/index.md
+++ b/exampleSite/content/users/adir1.com/index.md
@@ -2,7 +2,7 @@
title: "adir1.com"
tags: [Personal site]
externalUrl: "https://adir1.com/"
- date: 9977-08-08
+ date: 9978-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/adir1.com/index.zh-cn.md b/exampleSite/content/users/adir1.com/index.zh-cn.md
index 3641303f3..fb1dd3859 100644
--- a/exampleSite/content/users/adir1.com/index.zh-cn.md
+++ b/exampleSite/content/users/adir1.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "adir1.com"
tags: [个人网站]
externalUrl: "https://adir1.com/"
- date: 9977-08-08
+ date: 9978-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 9e4ff4982..76ce90ce1 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: 9966-08-08
+ date: 9967-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 3311ab9dc..624f8977b 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: 9966-08-08
+ date: 9967-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 271af77ba..2834f2d44 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: 9966-08-08
+ date: 9967-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 89f15bf08..f4af3d9c9 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: 9966-08-08
+ date: 9967-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alejandro-ao.com/feature.jpg b/exampleSite/content/users/alejandro-ao.com/feature.jpg
index aad03ee46..efcd9ce29 100644
Binary files a/exampleSite/content/users/alejandro-ao.com/feature.jpg and b/exampleSite/content/users/alejandro-ao.com/feature.jpg differ
diff --git a/exampleSite/content/users/alejandro-ao.com/index.it.md b/exampleSite/content/users/alejandro-ao.com/index.it.md
index bfc92f235..0a688af58 100644
--- a/exampleSite/content/users/alejandro-ao.com/index.it.md
+++ b/exampleSite/content/users/alejandro-ao.com/index.it.md
@@ -2,7 +2,7 @@
title: "alejandro-ao.com"
tags: [Sito personale]
externalUrl: "https://alejandro-ao.com/"
- date: 9978-08-08
+ date: 9979-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alejandro-ao.com/index.ja.md b/exampleSite/content/users/alejandro-ao.com/index.ja.md
index cc5e19765..a7a4fdb10 100644
--- a/exampleSite/content/users/alejandro-ao.com/index.ja.md
+++ b/exampleSite/content/users/alejandro-ao.com/index.ja.md
@@ -2,7 +2,7 @@
title: "alejandro-ao.com"
tags: [個人サイト]
externalUrl: "https://alejandro-ao.com/"
- date: 9978-08-08
+ date: 9979-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alejandro-ao.com/index.md b/exampleSite/content/users/alejandro-ao.com/index.md
index f585d5349..d56587623 100644
--- a/exampleSite/content/users/alejandro-ao.com/index.md
+++ b/exampleSite/content/users/alejandro-ao.com/index.md
@@ -2,7 +2,7 @@
title: "alejandro-ao.com"
tags: [Personal site]
externalUrl: "https://alejandro-ao.com/"
- date: 9978-08-08
+ date: 9979-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/alejandro-ao.com/index.zh-cn.md b/exampleSite/content/users/alejandro-ao.com/index.zh-cn.md
index ec871df54..37965ec7b 100644
--- a/exampleSite/content/users/alejandro-ao.com/index.zh-cn.md
+++ b/exampleSite/content/users/alejandro-ao.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "alejandro-ao.com"
tags: [个人网站]
externalUrl: "https://alejandro-ao.com/"
- date: 9978-08-08
+ date: 9979-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 dcf8baaf1..107d05bdd 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: 9933-08-08
+ date: 9935-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 ed5509993..71ae7fdda 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: 9933-08-08
+ date: 9935-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 6db78851a..468ceef83 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: 9933-08-08
+ date: 9935-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 42a2f4fe9..65dddbdf8 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: 9933-08-08
+ date: 9935-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/asterisk.lol/index.it.md b/exampleSite/content/users/asterisk.lol/index.it.md
index 37d486bef..1fe5e31b7 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: 9929-08-08
+ date: 9931-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 38576671d..383136153 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: 9929-08-08
+ date: 9931-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 58815e4e5..758e62e15 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: 9929-08-08
+ date: 9931-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 e711db5aa..4e2562e70 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: 9929-08-08
+ date: 9931-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/bbagwang.com/index.it.md b/exampleSite/content/users/bbagwang.com/index.it.md
index 01fedf28b..271b5980f 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: 9952-08-08
+ date: 9953-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 2e19cebf5..ffa192697 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: 9952-08-08
+ date: 9953-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 b51badc7c..3292d0b3e 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: 9952-08-08
+ date: 9953-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 4a2d0431f..da05716aa 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: 9952-08-08
+ date: 9953-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blastomussa.dev/index.it.md b/exampleSite/content/users/blastomussa.dev/index.it.md
index 5d204cf48..18b4575fe 100644
--- a/exampleSite/content/users/blastomussa.dev/index.it.md
+++ b/exampleSite/content/users/blastomussa.dev/index.it.md
@@ -2,7 +2,7 @@
title: "blastomussa.dev"
tags: [Sito personale]
externalUrl: "https://blastomussa.dev"
- date: 9984-08-08
+ date: 9985-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blastomussa.dev/index.ja.md b/exampleSite/content/users/blastomussa.dev/index.ja.md
index 1b3315e1d..c2ca73c6a 100644
--- a/exampleSite/content/users/blastomussa.dev/index.ja.md
+++ b/exampleSite/content/users/blastomussa.dev/index.ja.md
@@ -2,7 +2,7 @@
title: "blastomussa.dev"
tags: [個人サイト]
externalUrl: "https://blastomussa.dev"
- date: 9984-08-08
+ date: 9985-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blastomussa.dev/index.md b/exampleSite/content/users/blastomussa.dev/index.md
index 5e9c9a9e3..617a59aac 100644
--- a/exampleSite/content/users/blastomussa.dev/index.md
+++ b/exampleSite/content/users/blastomussa.dev/index.md
@@ -2,7 +2,7 @@
title: "blastomussa.dev"
tags: [Personal site]
externalUrl: "https://blastomussa.dev"
- date: 9984-08-08
+ date: 9985-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blastomussa.dev/index.zh-cn.md b/exampleSite/content/users/blastomussa.dev/index.zh-cn.md
index de117a6bc..c047e681b 100644
--- a/exampleSite/content/users/blastomussa.dev/index.zh-cn.md
+++ b/exampleSite/content/users/blastomussa.dev/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "blastomussa.dev"
tags: [个人网站]
externalUrl: "https://blastomussa.dev"
- date: 9984-08-08
+ date: 9985-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 ac460ce65..8eff5dfb2 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 13afc4f10..fd3cf3ae6 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: 9960-08-08
+ date: 9961-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 78881307f..eede97c11 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: 9960-08-08
+ date: 9961-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 d0c4bf98a..2325933f0 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: 9960-08-08
+ date: 9961-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 6b6203a69..6be85e545 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: 9960-08-08
+ date: 9961-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 72a3c3e91..e954a54c3 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.muffn.io/index.it.md b/exampleSite/content/users/blog.muffn.io/index.it.md
index edb6d5087..f94d67dae 100644
--- a/exampleSite/content/users/blog.muffn.io/index.it.md
+++ b/exampleSite/content/users/blog.muffn.io/index.it.md
@@ -2,7 +2,7 @@
title: "blog.muffn.io"
tags: [Sito personale]
externalUrl: "https://blog.muffn.io/"
- date: 9975-08-08
+ date: 9976-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.muffn.io/index.ja.md b/exampleSite/content/users/blog.muffn.io/index.ja.md
index 719320538..a28a7adab 100644
--- a/exampleSite/content/users/blog.muffn.io/index.ja.md
+++ b/exampleSite/content/users/blog.muffn.io/index.ja.md
@@ -2,7 +2,7 @@
title: "blog.muffn.io"
tags: [個人サイト]
externalUrl: "https://blog.muffn.io/"
- date: 9975-08-08
+ date: 9976-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.muffn.io/index.md b/exampleSite/content/users/blog.muffn.io/index.md
index 56280e011..adcc5287d 100644
--- a/exampleSite/content/users/blog.muffn.io/index.md
+++ b/exampleSite/content/users/blog.muffn.io/index.md
@@ -2,7 +2,7 @@
title: "blog.muffn.io"
tags: [Personal site]
externalUrl: "https://blog.muffn.io/"
- date: 9975-08-08
+ date: 9976-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.muffn.io/index.zh-cn.md b/exampleSite/content/users/blog.muffn.io/index.zh-cn.md
index fd509d6a5..b5d9262b9 100644
--- a/exampleSite/content/users/blog.muffn.io/index.zh-cn.md
+++ b/exampleSite/content/users/blog.muffn.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "blog.muffn.io"
tags: [个人网站]
externalUrl: "https://blog.muffn.io/"
- date: 9975-08-08
+ date: 9976-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/blog.stonegarden.dev/feature.jpg b/exampleSite/content/users/blog.stonegarden.dev/feature.jpg
index 246fc1bca..d9c9667d4 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 426e653ea..02fdb133f 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: 9938-08-08
+ date: 9939-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 12e45af13..daa8fa6fc 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: 9938-08-08
+ date: 9939-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 004e93b85..d4baf8a91 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: 9938-08-08
+ date: 9939-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 40b21969b..1203d1cd1 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: 9938-08-08
+ date: 9939-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/cdell.io/index.it.md b/exampleSite/content/users/cdell.io/index.it.md
index 922335701..43c3df58c 100644
--- a/exampleSite/content/users/cdell.io/index.it.md
+++ b/exampleSite/content/users/cdell.io/index.it.md
@@ -2,7 +2,7 @@
title: "cdell.io"
tags: [Sito personale]
externalUrl: "https://cdell.io"
- date: 9983-08-08
+ date: 9984-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/cdell.io/index.ja.md b/exampleSite/content/users/cdell.io/index.ja.md
index 9b57bd6d9..0c956953b 100644
--- a/exampleSite/content/users/cdell.io/index.ja.md
+++ b/exampleSite/content/users/cdell.io/index.ja.md
@@ -2,7 +2,7 @@
title: "cdell.io"
tags: [個人サイト]
externalUrl: "https://cdell.io"
- date: 9983-08-08
+ date: 9984-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/cdell.io/index.md b/exampleSite/content/users/cdell.io/index.md
index fefca3f1e..1285ba93f 100644
--- a/exampleSite/content/users/cdell.io/index.md
+++ b/exampleSite/content/users/cdell.io/index.md
@@ -2,7 +2,7 @@
title: "cdell.io"
tags: [Personal site]
externalUrl: "https://cdell.io"
- date: 9983-08-08
+ date: 9984-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/cdell.io/index.zh-cn.md b/exampleSite/content/users/cdell.io/index.zh-cn.md
index 99f1cd136..6ca93f444 100644
--- a/exampleSite/content/users/cdell.io/index.zh-cn.md
+++ b/exampleSite/content/users/cdell.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "cdell.io"
tags: [个人网站]
externalUrl: "https://cdell.io"
- date: 9983-08-08
+ date: 9984-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/clemsau.com/feature.jpg b/exampleSite/content/users/clemsau.com/feature.jpg
index 52c278ed9..333e65544 100644
Binary files a/exampleSite/content/users/clemsau.com/feature.jpg and b/exampleSite/content/users/clemsau.com/feature.jpg differ
diff --git a/exampleSite/content/users/clemsau.com/index.it.md b/exampleSite/content/users/clemsau.com/index.it.md
index 0f63bcfab..99daf2cbe 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: 9964-08-08
+ date: 9965-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 c83650329..1989ddbf3 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: 9964-08-08
+ date: 9965-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 3bdfe65c1..11b69727e 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: 9964-08-08
+ date: 9965-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 3ac7abe36..19b2dcfe1 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: 9964-08-08
+ date: 9965-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/datatodroids.tech/feature.jpg b/exampleSite/content/users/datatodroids.tech/feature.jpg
index b3a1f002a..c46e6978f 100644
Binary files a/exampleSite/content/users/datatodroids.tech/feature.jpg and b/exampleSite/content/users/datatodroids.tech/feature.jpg differ
diff --git a/exampleSite/content/users/datatodroids.tech/index.it.md b/exampleSite/content/users/datatodroids.tech/index.it.md
index 2ffe26026..beb7c0da0 100644
--- a/exampleSite/content/users/datatodroids.tech/index.it.md
+++ b/exampleSite/content/users/datatodroids.tech/index.it.md
@@ -2,7 +2,7 @@
title: "datatodroids.tech"
tags: [Sito personale, Blog]
externalUrl: "https://datatodroids.tech/"
- date: 9931-08-08
+ date: 9933-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/datatodroids.tech/index.ja.md b/exampleSite/content/users/datatodroids.tech/index.ja.md
index d90879c17..8ae582323 100644
--- a/exampleSite/content/users/datatodroids.tech/index.ja.md
+++ b/exampleSite/content/users/datatodroids.tech/index.ja.md
@@ -2,7 +2,7 @@
title: "datatodroids.tech"
tags: [個人サイト, ブログ]
externalUrl: "https://datatodroids.tech/"
- date: 9931-08-08
+ date: 9933-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/datatodroids.tech/index.md b/exampleSite/content/users/datatodroids.tech/index.md
index 72b08fbfb..4b57cae3e 100644
--- a/exampleSite/content/users/datatodroids.tech/index.md
+++ b/exampleSite/content/users/datatodroids.tech/index.md
@@ -2,7 +2,7 @@
title: "datatodroids.tech"
tags: [Personal site,Blog]
externalUrl: "https://datatodroids.tech/"
- date: 9931-08-08
+ date: 9933-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/datatodroids.tech/index.zh-cn.md b/exampleSite/content/users/datatodroids.tech/index.zh-cn.md
index df119883b..fa4b38ade 100644
--- a/exampleSite/content/users/datatodroids.tech/index.zh-cn.md
+++ b/exampleSite/content/users/datatodroids.tech/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "datatodroids.tech"
tags: [个人网站, 博客]
externalUrl: "https://datatodroids.tech/"
- date: 9931-08-08
+ date: 9933-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/deepumohan.com-tech/index.it.md b/exampleSite/content/users/deepumohan.com-tech/index.it.md
index 2948bcc79..2508d3ffe 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: 9943-08-08
+ date: 9944-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 8b709d4c0..3fedd55ae 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: 9943-08-08
+ date: 9944-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 8283d461d..77cc661fa 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: 9943-08-08
+ date: 9944-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 6d3d9a940..b329514be 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: 9943-08-08
+ date: 9944-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 6ddefeae0..f4599e5fd 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/dizzytech.de/index.it.md b/exampleSite/content/users/dizzytech.de/index.it.md
index f22af00c0..9a676bf7a 100644
--- a/exampleSite/content/users/dizzytech.de/index.it.md
+++ b/exampleSite/content/users/dizzytech.de/index.it.md
@@ -2,7 +2,7 @@
title: "dizzytech.de"
tags: [Sito personale]
externalUrl: "https://dizzytech.de"
- date: 9979-08-08
+ date: 9980-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/dizzytech.de/index.ja.md b/exampleSite/content/users/dizzytech.de/index.ja.md
index 811a3e79a..8f34f89a8 100644
--- a/exampleSite/content/users/dizzytech.de/index.ja.md
+++ b/exampleSite/content/users/dizzytech.de/index.ja.md
@@ -2,7 +2,7 @@
title: "dizzytech.de"
tags: [個人サイト]
externalUrl: "https://dizzytech.de"
- date: 9979-08-08
+ date: 9980-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/dizzytech.de/index.md b/exampleSite/content/users/dizzytech.de/index.md
index 8d4d14265..b8b7fdd68 100644
--- a/exampleSite/content/users/dizzytech.de/index.md
+++ b/exampleSite/content/users/dizzytech.de/index.md
@@ -2,7 +2,7 @@
title: "dizzytech.de"
tags: [Personal site]
externalUrl: "https://dizzytech.de"
- date: 9979-08-08
+ date: 9980-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/dizzytech.de/index.zh-cn.md b/exampleSite/content/users/dizzytech.de/index.zh-cn.md
index 37a417802..32ddd5e9f 100644
--- a/exampleSite/content/users/dizzytech.de/index.zh-cn.md
+++ b/exampleSite/content/users/dizzytech.de/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "dizzytech.de"
tags: [个人网站]
externalUrl: "https://dizzytech.de"
- date: 9979-08-08
+ date: 9980-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/eallion.com/feature.jpg b/exampleSite/content/users/eallion.com/feature.jpg
index 125b6cebd..fd40c51c4 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 9cc041afc..d65c7e62c 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: 9920-08-08
+ date: 9922-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 e59dfe052..f93464ab6 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: 9920-08-08
+ date: 9922-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 1747864d9..f9bbb1f16 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: 9920-08-08
+ date: 9922-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 73b30c0bf..b12db0049 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: 9920-08-08
+ date: 9922-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 4791a47ee..319698ee1 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: 9927-08-08
+ date: 9929-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 b23188961..9a21e4ac0 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: 9927-08-08
+ date: 9929-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 9cff6d8cf..c39365408 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: 9927-08-08
+ date: 9929-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 276a8723b..47919788c 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: 9927-08-08
+ date: 9929-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 62c2ae30b..16bcbd4eb 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: 9969-08-08
+ date: 9970-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 619a0b459..ae284ee9a 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: 9969-08-08
+ date: 9970-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 c05961fa1..391b18c12 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: 9969-08-08
+ date: 9970-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 2122dc7af..d9214b742 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: 9969-08-08
+ date: 9970-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 5f7d59491..a996d5ae9 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/feature.jpg b/exampleSite/content/users/gma.name/feature.jpg
index d22f5dfbb..c62463af4 100644
Binary files a/exampleSite/content/users/gma.name/feature.jpg and b/exampleSite/content/users/gma.name/feature.jpg differ
diff --git a/exampleSite/content/users/gma.name/index.it.md b/exampleSite/content/users/gma.name/index.it.md
index 3e9529ed8..e12e87480 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: 9949-08-08
+ date: 9950-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 6ffcd0775..36fa68506 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: 9949-08-08
+ date: 9950-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 5f55e88f0..e5bf4f827 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: 9949-08-08
+ date: 9950-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 5a5e365d9..d9f48a8b5 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: 9949-08-08
+ date: 9950-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 694cbf96b..605760f4d 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: 9959-08-08
+ date: 9960-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 941fb05f9..7ee238001 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: 9959-08-08
+ date: 9960-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 01315bb68..84e36183a 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: 9959-08-08
+ date: 9960-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 bdb3f2d8a..17d099f7c 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: 9959-08-08
+ date: 9960-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 dfa485cd4..41e9843bd 100644
--- a/exampleSite/content/users/hyperbowl3d.com/index.it.md
+++ b/exampleSite/content/users/hyperbowl3d.com/index.it.md
@@ -2,7 +2,7 @@
title: "hyperbowl3d.com"
tags: [Sito di gioco]
externalUrl: "https://hyperbowl3d.com/"
- date: 9968-08-08
+ date: 9969-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 29964b3b2..bd7d729b9 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: 9968-08-08
+ date: 9969-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 de0584d68..95120c528 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: 9968-08-08
+ date: 9969-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 90fd8dfc5..a7683e504 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: 9968-08-08
+ date: 9969-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/innerknowing/feature.jpg b/exampleSite/content/users/innerknowing/feature.jpg
index 4a1c604a5..0d3db61b1 100644
Binary files a/exampleSite/content/users/innerknowing/feature.jpg and b/exampleSite/content/users/innerknowing/feature.jpg differ
diff --git a/exampleSite/content/users/innerknowing/index.it.md b/exampleSite/content/users/innerknowing/index.it.md
index 56df36796..f984832b9 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: 9924-08-08
+ date: 9926-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 29a3bc01f..8b47202ba 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: 9924-08-08
+ date: 9926-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 674b8dadb..96ea88072 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: 9924-08-08
+ date: 9926-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 0237cb059..bd6f61973 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: 9924-08-08
+ date: 9926-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/insidemordecai.com/index.it.md b/exampleSite/content/users/insidemordecai.com/index.it.md
index 07393185e..d044042c3 100644
--- a/exampleSite/content/users/insidemordecai.com/index.it.md
+++ b/exampleSite/content/users/insidemordecai.com/index.it.md
@@ -2,7 +2,7 @@
title: "insidemordecai.com"
tags: [Sito personale]
externalUrl: "https://insidemordecai.com"
- date: 9985-08-08
+ date: 9986-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/insidemordecai.com/index.ja.md b/exampleSite/content/users/insidemordecai.com/index.ja.md
index 298f2a81c..daa147c39 100644
--- a/exampleSite/content/users/insidemordecai.com/index.ja.md
+++ b/exampleSite/content/users/insidemordecai.com/index.ja.md
@@ -2,7 +2,7 @@
title: "insidemordecai.com"
tags: [個人サイト]
externalUrl: "https://insidemordecai.com"
- date: 9985-08-08
+ date: 9986-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/insidemordecai.com/index.md b/exampleSite/content/users/insidemordecai.com/index.md
index e0421ade4..fa2b9d164 100644
--- a/exampleSite/content/users/insidemordecai.com/index.md
+++ b/exampleSite/content/users/insidemordecai.com/index.md
@@ -2,7 +2,7 @@
title: "insidemordecai.com"
tags: [Personal site]
externalUrl: "https://insidemordecai.com"
- date: 9985-08-08
+ date: 9986-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/insidemordecai.com/index.zh-cn.md b/exampleSite/content/users/insidemordecai.com/index.zh-cn.md
index 17271d7ef..f92a6c4d7 100644
--- a/exampleSite/content/users/insidemordecai.com/index.zh-cn.md
+++ b/exampleSite/content/users/insidemordecai.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "insidemordecai.com"
tags: [个人网站]
externalUrl: "https://insidemordecai.com"
- date: 9985-08-08
+ date: 9986-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 9a7611bfc..52236eda0 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/jam.dsg.li/index.it.md b/exampleSite/content/users/jam.dsg.li/index.it.md
index 83c1bc711..99b8c9e34 100644
--- a/exampleSite/content/users/jam.dsg.li/index.it.md
+++ b/exampleSite/content/users/jam.dsg.li/index.it.md
@@ -2,7 +2,7 @@
title: "jam.dsg.li"
tags: [Sito dell'organizzazione]
externalUrl: "https://jam.dsg.li"
- date: 9982-08-08
+ date: 9983-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jam.dsg.li/index.ja.md b/exampleSite/content/users/jam.dsg.li/index.ja.md
index b3b92249e..ccbe23407 100644
--- a/exampleSite/content/users/jam.dsg.li/index.ja.md
+++ b/exampleSite/content/users/jam.dsg.li/index.ja.md
@@ -2,7 +2,7 @@
title: "jam.dsg.li"
tags: [組織サイト]
externalUrl: "https://jam.dsg.li"
- date: 9982-08-08
+ date: 9983-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jam.dsg.li/index.md b/exampleSite/content/users/jam.dsg.li/index.md
index 8cd49b9aa..20aa3e380 100644
--- a/exampleSite/content/users/jam.dsg.li/index.md
+++ b/exampleSite/content/users/jam.dsg.li/index.md
@@ -2,7 +2,7 @@
title: "jam.dsg.li"
tags: [Organization site]
externalUrl: "https://jam.dsg.li"
- date: 9982-08-08
+ date: 9983-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jam.dsg.li/index.zh-cn.md b/exampleSite/content/users/jam.dsg.li/index.zh-cn.md
index 1f43ab1cd..b85d26e20 100644
--- a/exampleSite/content/users/jam.dsg.li/index.zh-cn.md
+++ b/exampleSite/content/users/jam.dsg.li/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "jam.dsg.li"
tags: [组织站点]
externalUrl: "https://jam.dsg.li"
- date: 9982-08-08
+ date: 9983-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/jamiemoxon.tech/feature.jpg b/exampleSite/content/users/jamiemoxon.tech/feature.jpg
index 1d2cd193a..e90e9ad6d 100644
Binary files a/exampleSite/content/users/jamiemoxon.tech/feature.jpg and b/exampleSite/content/users/jamiemoxon.tech/feature.jpg differ
diff --git a/exampleSite/content/users/jamiemoxon.tech/index.it.md b/exampleSite/content/users/jamiemoxon.tech/index.it.md
index bb2347c32..665c08ee7 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: 9951-08-08
+ date: 9952-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 37058245e..db2a35029 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: 9951-08-08
+ date: 9952-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 44faba8a9..98ae2dbbd 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: 9951-08-08
+ date: 9952-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 c77169aaf..9248d4948 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: 9951-08-08
+ date: 9952-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 9f7dae07f..74309193a 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: 9941-08-08
+ date: 9942-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 b246fe963..d4dcb0058 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: 9941-08-08
+ date: 9942-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 e00cc522c..84fcf0c40 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: 9941-08-08
+ date: 9942-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 6753d45b1..a405d75b0 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: 9941-08-08
+ date: 9942-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 ed8f832a7..525fe93d7 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 90a9cbebb..d2bc06472 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: 9954-08-08
+ date: 9955-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 982bb4a20..e3e579ff9 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: 9954-08-08
+ date: 9955-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 8ffe3af43..2b68fb133 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: 9954-08-08
+ date: 9955-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 54ffe3335..d999d5e69 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: 9954-08-08
+ date: 9955-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 89b6c879c..cd1e3a6ee 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 4d2c0e892..97cdbe582 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: 9922-08-08
+ date: 9924-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 1ef2031d2..7487e58c7 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: 9922-08-08
+ date: 9924-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 ef7835cf0..bd88008ac 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: 9922-08-08
+ date: 9924-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 8b035b8ff..335c0e2ac 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: 9922-08-08
+ date: 9924-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 2fc2e1182..71275f6f1 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: 9942-08-08
+ date: 9943-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 cdc307be5..ced76855f 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: 9942-08-08
+ date: 9943-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 5e3f4b051..6435ef4de 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: 9942-08-08
+ date: 9943-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 464170da6..e9cb9eb6a 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: 9942-08-08
+ date: 9943-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 49a7f2ecf..b0b20f968 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: 9963-08-08
+ date: 9964-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 1d2f2e755..225e310b5 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: 9963-08-08
+ date: 9964-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 d6fe2d661..c111d8f35 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: 9963-08-08
+ date: 9964-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 4ca60b91c..8d05af433 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: 9963-08-08
+ date: 9964-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 34b248f41..0107ea01c 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/loisvelasco.is-a.dev/index.it.md b/exampleSite/content/users/loisvelasco.is-a.dev/index.it.md
index 8e7e7c362..54d72e24f 100644
--- a/exampleSite/content/users/loisvelasco.is-a.dev/index.it.md
+++ b/exampleSite/content/users/loisvelasco.is-a.dev/index.it.md
@@ -2,7 +2,7 @@
title: "loisvelasco.is-a.dev"
tags: [Sito personale]
externalUrl: "https://loisvelasco.is-a.dev"
- date: 9987-08-08
+ date: 9988-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/loisvelasco.is-a.dev/index.ja.md b/exampleSite/content/users/loisvelasco.is-a.dev/index.ja.md
index 9713f7b9e..2c5afcd39 100644
--- a/exampleSite/content/users/loisvelasco.is-a.dev/index.ja.md
+++ b/exampleSite/content/users/loisvelasco.is-a.dev/index.ja.md
@@ -2,7 +2,7 @@
title: "loisvelasco.is-a.dev"
tags: [個人サイト]
externalUrl: "https://loisvelasco.is-a.dev"
- date: 9987-08-08
+ date: 9988-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/loisvelasco.is-a.dev/index.md b/exampleSite/content/users/loisvelasco.is-a.dev/index.md
index e3493cc0a..ff91629d0 100644
--- a/exampleSite/content/users/loisvelasco.is-a.dev/index.md
+++ b/exampleSite/content/users/loisvelasco.is-a.dev/index.md
@@ -2,7 +2,7 @@
title: "loisvelasco.is-a.dev"
tags: [Personal site]
externalUrl: "https://loisvelasco.is-a.dev"
- date: 9987-08-08
+ date: 9988-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/loisvelasco.is-a.dev/index.zh-cn.md b/exampleSite/content/users/loisvelasco.is-a.dev/index.zh-cn.md
index faddca08d..12d6ec778 100644
--- a/exampleSite/content/users/loisvelasco.is-a.dev/index.zh-cn.md
+++ b/exampleSite/content/users/loisvelasco.is-a.dev/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "loisvelasco.is-a.dev"
tags: [个人网站]
externalUrl: "https://loisvelasco.is-a.dev"
- date: 9987-08-08
+ date: 9988-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/m3upt.com/feature.jpg b/exampleSite/content/users/m3upt.com/feature.jpg
index ae1ac87cd..562574cb9 100644
Binary files a/exampleSite/content/users/m3upt.com/feature.jpg and b/exampleSite/content/users/m3upt.com/feature.jpg differ
diff --git a/exampleSite/content/users/m3upt.com/index.it.md b/exampleSite/content/users/m3upt.com/index.it.md
index b44f9f75c..005eaacd4 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: 9956-08-08
+ date: 9957-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 a6bf87db3..2d377f8ef 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: 9956-08-08
+ date: 9957-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 ac822236a..46c7defd1 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: 9956-08-08
+ date: 9957-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 a61f260a1..fa2989dec 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: 9956-08-08
+ date: 9957-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 c65f97545..1da6c59af 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 c6ffddd56..7730190ea 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: 9971-08-08
+ date: 9972-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 42106ebf4..86cd5d16d 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: 9971-08-08
+ date: 9972-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 d6ac9321f..0d471deda 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: 9971-08-08
+ date: 9972-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 e0b9fd662..555f91e6e 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: 9971-08-08
+ date: 9972-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/marupanda.art-marucomics/feature.jpg b/exampleSite/content/users/marupanda.art-marucomics/feature.jpg
index 3d0ad06cb..3945c7028 100644
Binary files a/exampleSite/content/users/marupanda.art-marucomics/feature.jpg and b/exampleSite/content/users/marupanda.art-marucomics/feature.jpg differ
diff --git a/exampleSite/content/users/marupanda.art-marucomics/index.it.md b/exampleSite/content/users/marupanda.art-marucomics/index.it.md
index b1b7d1777..4066ab8df 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: 9957-08-08
+ date: 9958-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 b3e92a159..2862dd51f 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: 9957-08-08
+ date: 9958-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 34c968f94..2cf0b3539 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: 9957-08-08
+ date: 9958-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 b60800777..c7dce6d4e 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: 9957-08-08
+ date: 9958-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/mayer.life/feature.jpg b/exampleSite/content/users/mayer.life/feature.jpg
index 06cea8c0c..8fc31727e 100644
Binary files a/exampleSite/content/users/mayer.life/feature.jpg and b/exampleSite/content/users/mayer.life/feature.jpg differ
diff --git a/exampleSite/content/users/mayer.life/index.it.md b/exampleSite/content/users/mayer.life/index.it.md
index d6eb6e205..8a069f837 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: 9948-08-08
+ date: 9949-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 f3d7deaa7..e0f1781d8 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: 9948-08-08
+ date: 9949-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 9e303c6d0..18efe7042 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: 9948-08-08
+ date: 9949-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 d11cb7b64..881dbc6fd 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: 9948-08-08
+ date: 9949-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/michaeldorner.de/feature.jpg b/exampleSite/content/users/michaeldorner.de/feature.jpg
new file mode 100644
index 000000000..ef7c01756
Binary files /dev/null and b/exampleSite/content/users/michaeldorner.de/feature.jpg differ
diff --git a/exampleSite/content/users/michaeldorner.de/index.it.md b/exampleSite/content/users/michaeldorner.de/index.it.md
new file mode 100644
index 000000000..f1551bf6f
--- /dev/null
+++ b/exampleSite/content/users/michaeldorner.de/index.it.md
@@ -0,0 +1,14 @@
+---
+ title: "michaeldorner.de"
+ tags: [Blog, Sito personale, Accademia]
+ externalUrl: "https://www.michaeldorner.de"
+ date: 9920-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
+
diff --git a/exampleSite/content/users/michaeldorner.de/index.ja.md b/exampleSite/content/users/michaeldorner.de/index.ja.md
new file mode 100644
index 000000000..0ecbee654
--- /dev/null
+++ b/exampleSite/content/users/michaeldorner.de/index.ja.md
@@ -0,0 +1,14 @@
+---
+ title: "michaeldorner.de"
+ tags: [ブログ, 個人サイト, 学術界]
+ externalUrl: "https://www.michaeldorner.de"
+ date: 9920-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
+
diff --git a/exampleSite/content/users/michaeldorner.de/index.md b/exampleSite/content/users/michaeldorner.de/index.md
new file mode 100644
index 000000000..8987400a7
--- /dev/null
+++ b/exampleSite/content/users/michaeldorner.de/index.md
@@ -0,0 +1,13 @@
+---
+ title: "michaeldorner.de"
+ tags: [Blog,Personal Site,Academia]
+ externalUrl: "https://www.michaeldorner.de"
+ date: 9920-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
diff --git a/exampleSite/content/users/michaeldorner.de/index.zh-cn.md b/exampleSite/content/users/michaeldorner.de/index.zh-cn.md
new file mode 100644
index 000000000..5dcd0fbae
--- /dev/null
+++ b/exampleSite/content/users/michaeldorner.de/index.zh-cn.md
@@ -0,0 +1,14 @@
+---
+ title: "michaeldorner.de"
+ tags: [博客, 个人网站, 学术界]
+ externalUrl: "https://www.michaeldorner.de"
+ date: 9920-08-08
+ showDate: false
+ showAuthor: false
+ showReadingTime: false
+ showEdit: false
+ showLikes: false
+ showViews: false
+ layoutBackgroundHeaderSpace: false
+
---
+
diff --git a/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg b/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg
index 42bf1dad9..422bc5802 100644
Binary files a/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg and b/exampleSite/content/users/mucahitkurtlar.github.io/feature.jpg differ
diff --git a/exampleSite/content/users/muhalvin.github.io/index.it.md b/exampleSite/content/users/muhalvin.github.io/index.it.md
index 37af81ad4..4b0848f82 100644
--- a/exampleSite/content/users/muhalvin.github.io/index.it.md
+++ b/exampleSite/content/users/muhalvin.github.io/index.it.md
@@ -2,7 +2,7 @@
title: "muhalvin.github.io"
tags: [Sito personale]
externalUrl: "https://muhalvin.github.io/"
- date: 9972-08-08
+ date: 9973-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/muhalvin.github.io/index.ja.md b/exampleSite/content/users/muhalvin.github.io/index.ja.md
index 9ba189119..321e7cf6c 100644
--- a/exampleSite/content/users/muhalvin.github.io/index.ja.md
+++ b/exampleSite/content/users/muhalvin.github.io/index.ja.md
@@ -2,7 +2,7 @@
title: "muhalvin.github.io"
tags: [個人サイト]
externalUrl: "https://muhalvin.github.io/"
- date: 9972-08-08
+ date: 9973-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/muhalvin.github.io/index.md b/exampleSite/content/users/muhalvin.github.io/index.md
index 9e8ee74ca..081292d71 100644
--- a/exampleSite/content/users/muhalvin.github.io/index.md
+++ b/exampleSite/content/users/muhalvin.github.io/index.md
@@ -2,7 +2,7 @@
title: "muhalvin.github.io"
tags: [Personal site]
externalUrl: "https://muhalvin.github.io/"
- date: 9972-08-08
+ date: 9973-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/muhalvin.github.io/index.zh-cn.md b/exampleSite/content/users/muhalvin.github.io/index.zh-cn.md
index 48c35b4bd..81918acf0 100644
--- a/exampleSite/content/users/muhalvin.github.io/index.zh-cn.md
+++ b/exampleSite/content/users/muhalvin.github.io/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "muhalvin.github.io"
tags: [个人网站]
externalUrl: "https://muhalvin.github.io/"
- date: 9972-08-08
+ date: 9973-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 f21f6a045..2c8b7f1eb 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/index.it.md b/exampleSite/content/users/nick.bouwhuis.net/index.it.md
index ea489b54b..aaf195c03 100644
--- a/exampleSite/content/users/nick.bouwhuis.net/index.it.md
+++ b/exampleSite/content/users/nick.bouwhuis.net/index.it.md
@@ -2,7 +2,7 @@
title: "nick.bouwhuis.net"
tags: [Sito personale]
externalUrl: "https://nick.bouwhuis.net"
- date: 9974-08-08
+ date: 9975-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/nick.bouwhuis.net/index.ja.md b/exampleSite/content/users/nick.bouwhuis.net/index.ja.md
index c8bfb8f12..4f8d8becd 100644
--- a/exampleSite/content/users/nick.bouwhuis.net/index.ja.md
+++ b/exampleSite/content/users/nick.bouwhuis.net/index.ja.md
@@ -2,7 +2,7 @@
title: "nick.bouwhuis.net"
tags: [個人サイト]
externalUrl: "https://nick.bouwhuis.net"
- date: 9974-08-08
+ date: 9975-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/nick.bouwhuis.net/index.md b/exampleSite/content/users/nick.bouwhuis.net/index.md
index 0a50a7f33..54fd00777 100644
--- a/exampleSite/content/users/nick.bouwhuis.net/index.md
+++ b/exampleSite/content/users/nick.bouwhuis.net/index.md
@@ -2,7 +2,7 @@
title: "nick.bouwhuis.net"
tags: [Personal site]
externalUrl: "https://nick.bouwhuis.net"
- date: 9974-08-08
+ date: 9975-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/nick.bouwhuis.net/index.zh-cn.md b/exampleSite/content/users/nick.bouwhuis.net/index.zh-cn.md
index bea99c8c1..1726a1018 100644
--- a/exampleSite/content/users/nick.bouwhuis.net/index.zh-cn.md
+++ b/exampleSite/content/users/nick.bouwhuis.net/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "nick.bouwhuis.net"
tags: [个人网站]
externalUrl: "https://nick.bouwhuis.net"
- date: 9974-08-08
+ date: 9975-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/nikarashihatsu.github.io/feature.jpg b/exampleSite/content/users/nikarashihatsu.github.io/feature.jpg
index 2a66bce69..3fcca13a2 100644
Binary files a/exampleSite/content/users/nikarashihatsu.github.io/feature.jpg and b/exampleSite/content/users/nikarashihatsu.github.io/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 337a2ff3c..32e1183b3 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: 9961-08-08
+ date: 9962-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 2f49f5f3f..925e94a34 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: 9961-08-08
+ date: 9962-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 4c7f1984d..0308773c2 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: 9961-08-08
+ date: 9962-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 67e55b59d..c0aa50d40 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: 9961-08-08
+ date: 9962-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 76747a39c..8944f2cce 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/niklas-hartmann-dev.de/index.it.md b/exampleSite/content/users/niklas-hartmann-dev.de/index.it.md
index 43ad90490..949e3e97a 100644
--- a/exampleSite/content/users/niklas-hartmann-dev.de/index.it.md
+++ b/exampleSite/content/users/niklas-hartmann-dev.de/index.it.md
@@ -2,7 +2,7 @@
title: "niklas-hartmann-dev.de"
tags: [Sito personale]
externalUrl: "https://niklas-hartmann-dev.de/"
- date: 9976-08-08
+ date: 9977-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/niklas-hartmann-dev.de/index.ja.md b/exampleSite/content/users/niklas-hartmann-dev.de/index.ja.md
index f66bfaf51..b232ce0f1 100644
--- a/exampleSite/content/users/niklas-hartmann-dev.de/index.ja.md
+++ b/exampleSite/content/users/niklas-hartmann-dev.de/index.ja.md
@@ -2,7 +2,7 @@
title: "niklas-hartmann-dev.de"
tags: [個人サイト]
externalUrl: "https://niklas-hartmann-dev.de/"
- date: 9976-08-08
+ date: 9977-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/niklas-hartmann-dev.de/index.md b/exampleSite/content/users/niklas-hartmann-dev.de/index.md
index 8f1add23c..dd428191b 100644
--- a/exampleSite/content/users/niklas-hartmann-dev.de/index.md
+++ b/exampleSite/content/users/niklas-hartmann-dev.de/index.md
@@ -2,7 +2,7 @@
title: "niklas-hartmann-dev.de"
tags: [Personal site]
externalUrl: "https://niklas-hartmann-dev.de/"
- date: 9976-08-08
+ date: 9977-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/niklas-hartmann-dev.de/index.zh-cn.md b/exampleSite/content/users/niklas-hartmann-dev.de/index.zh-cn.md
index 939cd7c2e..1aad0f3cd 100644
--- a/exampleSite/content/users/niklas-hartmann-dev.de/index.zh-cn.md
+++ b/exampleSite/content/users/niklas-hartmann-dev.de/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "niklas-hartmann-dev.de"
tags: [个人网站]
externalUrl: "https://niklas-hartmann-dev.de/"
- date: 9976-08-08
+ date: 9977-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/notes.bluesdriveamelia.space/index.it.md b/exampleSite/content/users/notes.bluesdriveamelia.space/index.it.md
index 8d162d325..d32a02c7a 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: 9928-08-08
+ date: 9930-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 003fb6254..7f318d645 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: 9928-08-08
+ date: 9930-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 bd0967386..43b9b7850 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: 9928-08-08
+ date: 9930-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 331502cc6..fefda4773 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: 9928-08-08
+ date: 9930-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 75e79fc30..82ab9223a 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 0bc87be8f..256fdc3a4 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: 9945-08-08
+ date: 9946-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 f015f8331..df92d651b 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: 9945-08-08
+ date: 9946-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 f2227e3d2..0f4bad55b 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: 9945-08-08
+ date: 9946-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 aaf3343e9..8902d6e9e 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: 9945-08-08
+ date: 9946-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/omarohn.de/index.it.md b/exampleSite/content/users/omarohn.de/index.it.md
index 233e3b9df..a6afc636f 100644
--- a/exampleSite/content/users/omarohn.de/index.it.md
+++ b/exampleSite/content/users/omarohn.de/index.it.md
@@ -2,7 +2,7 @@
title: "omarohn.de"
tags: [Sito personale]
externalUrl: "https://omarohn.de"
- date: 9986-08-08
+ date: 9987-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/omarohn.de/index.ja.md b/exampleSite/content/users/omarohn.de/index.ja.md
index e6ee1f4b7..0c18ebc48 100644
--- a/exampleSite/content/users/omarohn.de/index.ja.md
+++ b/exampleSite/content/users/omarohn.de/index.ja.md
@@ -2,7 +2,7 @@
title: "omarohn.de"
tags: [個人サイト]
externalUrl: "https://omarohn.de"
- date: 9986-08-08
+ date: 9987-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/omarohn.de/index.md b/exampleSite/content/users/omarohn.de/index.md
index f8c67b64b..128a37c96 100644
--- a/exampleSite/content/users/omarohn.de/index.md
+++ b/exampleSite/content/users/omarohn.de/index.md
@@ -2,7 +2,7 @@
title: "omarohn.de"
tags: [Personal site]
externalUrl: "https://omarohn.de"
- date: 9986-08-08
+ date: 9987-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/omarohn.de/index.zh-cn.md b/exampleSite/content/users/omarohn.de/index.zh-cn.md
index 8d4b755b0..fd41680b6 100644
--- a/exampleSite/content/users/omarohn.de/index.zh-cn.md
+++ b/exampleSite/content/users/omarohn.de/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "omarohn.de"
tags: [个人网站]
externalUrl: "https://omarohn.de"
- date: 9986-08-08
+ date: 9987-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 b6c8c5701..872c2e373 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: 9955-08-08
+ date: 9956-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 7e14992d2..f6542c70b 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: 9955-08-08
+ date: 9956-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 1915b6221..e720b5415 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: 9955-08-08
+ date: 9956-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 d5bba076c..3478b2846 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: 9955-08-08
+ date: 9956-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 b662098fc..c86275a4a 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 0678ba266..7d78a639f 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/priyakdey.com/index.it.md b/exampleSite/content/users/priyakdey.com/index.it.md
index c8c4a31c3..cd34e1e01 100644
--- a/exampleSite/content/users/priyakdey.com/index.it.md
+++ b/exampleSite/content/users/priyakdey.com/index.it.md
@@ -2,7 +2,7 @@
title: "priyakdey.com"
tags: [Sito personale]
externalUrl: "https://priyakdey.com"
- date: 9981-08-08
+ date: 9982-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/priyakdey.com/index.ja.md b/exampleSite/content/users/priyakdey.com/index.ja.md
index 0e847bb69..8f681f87a 100644
--- a/exampleSite/content/users/priyakdey.com/index.ja.md
+++ b/exampleSite/content/users/priyakdey.com/index.ja.md
@@ -2,7 +2,7 @@
title: "priyakdey.com"
tags: [個人サイト]
externalUrl: "https://priyakdey.com"
- date: 9981-08-08
+ date: 9982-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/priyakdey.com/index.md b/exampleSite/content/users/priyakdey.com/index.md
index 76466fcfe..199a77830 100644
--- a/exampleSite/content/users/priyakdey.com/index.md
+++ b/exampleSite/content/users/priyakdey.com/index.md
@@ -2,7 +2,7 @@
title: "priyakdey.com"
tags: [Personal site]
externalUrl: "https://priyakdey.com"
- date: 9981-08-08
+ date: 9982-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/priyakdey.com/index.zh-cn.md b/exampleSite/content/users/priyakdey.com/index.zh-cn.md
index 18b680284..137ef5cc7 100644
--- a/exampleSite/content/users/priyakdey.com/index.zh-cn.md
+++ b/exampleSite/content/users/priyakdey.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "priyakdey.com"
tags: [个人网站]
externalUrl: "https://priyakdey.com"
- date: 9981-08-08
+ date: 9982-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/rdgo.dev/index.it.md b/exampleSite/content/users/rdgo.dev/index.it.md
index eaf10294d..bf9a3dace 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: 9965-08-08
+ date: 9966-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 a415d37f7..97438419f 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: 9965-08-08
+ date: 9966-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 f298144f4..abdf9ea73 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: 9965-08-08
+ date: 9966-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 3d5b66d9b..76d216d8d 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: 9965-08-08
+ date: 9966-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 c0dada365..6e5ef379f 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 e5df18516..4a432a528 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: 9940-08-08
+ date: 9941-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 78ace2102..80a67d298 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: 9940-08-08
+ date: 9941-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 e67f5f1ae..468b3c06b 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: 9940-08-08
+ date: 9941-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 b43eac84c..d6b5fd131 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: 9940-08-08
+ date: 9941-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 e05ad9dde..3c5319e1e 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: 9937-08-08
+ date: 9938-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 3fdf91f9f..e12bd2420 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: 9937-08-08
+ date: 9938-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 20d7e09f0..e5400ee62 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: 9937-08-08
+ date: 9938-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 70f34b510..c3661a3df 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: 9937-08-08
+ date: 9938-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 d1704fd0a..e8e0186ab 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 8b42d95bb..1775f521a 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: 9944-08-08
+ date: 9945-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 860d319f6..f9d9b066f 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: 9944-08-08
+ date: 9945-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 35aa6a813..db8432de9 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: 9944-08-08
+ date: 9945-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 495a607f1..750cd1c16 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: 9944-08-08
+ date: 9945-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 150af4347..6f9416e79 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 bab918c81..589901570 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: 9947-08-08
+ date: 9948-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 6320f90c2..a5659c2a6 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: 9947-08-08
+ date: 9948-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 a3fc67ad4..7887dbac2 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: 9947-08-08
+ date: 9948-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 ed8acfa4d..98cfdb97d 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: 9947-08-08
+ date: 9948-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/sdehm.dev/index.it.md b/exampleSite/content/users/sdehm.dev/index.it.md
index ac6a493d0..47fb27d8a 100644
--- a/exampleSite/content/users/sdehm.dev/index.it.md
+++ b/exampleSite/content/users/sdehm.dev/index.it.md
@@ -2,7 +2,7 @@
title: "sdehm.dev"
tags: [Sito personale]
externalUrl: "https://sdehm.dev"
- date: 9980-08-08
+ date: 9981-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/sdehm.dev/index.ja.md b/exampleSite/content/users/sdehm.dev/index.ja.md
index 27f902545..7cccd50ab 100644
--- a/exampleSite/content/users/sdehm.dev/index.ja.md
+++ b/exampleSite/content/users/sdehm.dev/index.ja.md
@@ -2,7 +2,7 @@
title: "sdehm.dev"
tags: [個人サイト]
externalUrl: "https://sdehm.dev"
- date: 9980-08-08
+ date: 9981-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/sdehm.dev/index.md b/exampleSite/content/users/sdehm.dev/index.md
index 4dc0ae85b..a03056886 100644
--- a/exampleSite/content/users/sdehm.dev/index.md
+++ b/exampleSite/content/users/sdehm.dev/index.md
@@ -2,7 +2,7 @@
title: "sdehm.dev"
tags: [Personal site]
externalUrl: "https://sdehm.dev"
- date: 9980-08-08
+ date: 9981-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/sdehm.dev/index.zh-cn.md b/exampleSite/content/users/sdehm.dev/index.zh-cn.md
index 592dde1cb..42c163897 100644
--- a/exampleSite/content/users/sdehm.dev/index.zh-cn.md
+++ b/exampleSite/content/users/sdehm.dev/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "sdehm.dev"
tags: [个人网站]
externalUrl: "https://sdehm.dev"
- date: 9980-08-08
+ date: 9981-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/talkdimsum.com/feature.jpg b/exampleSite/content/users/talkdimsum.com/feature.jpg
index 8af6de7b2..5548b2347 100644
Binary files a/exampleSite/content/users/talkdimsum.com/feature.jpg and b/exampleSite/content/users/talkdimsum.com/feature.jpg differ
diff --git a/exampleSite/content/users/talkdimsum.com/index.it.md b/exampleSite/content/users/talkdimsum.com/index.it.md
index 282bd5b93..ca1239de1 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: 9967-08-08
+ date: 9968-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 771330ed2..0330a2ef1 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: 9967-08-08
+ date: 9968-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 9a818b48a..7d2377609 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: 9967-08-08
+ date: 9968-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 9a260ce44..ebd457970 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: 9967-08-08
+ date: 9968-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/technicaldc.github.io/feature.jpg b/exampleSite/content/users/technicaldc.github.io/feature.jpg
index 79f21c15a..67b210655 100644
Binary files a/exampleSite/content/users/technicaldc.github.io/feature.jpg and b/exampleSite/content/users/technicaldc.github.io/feature.jpg differ
diff --git a/exampleSite/content/users/technicaldc.github.io/index.it.md b/exampleSite/content/users/technicaldc.github.io/index.it.md
index 0c6c207aa..ac9637ee4 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: 9935-08-08
+ date: 9936-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 2ba393021..cef2380cc 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: 9935-08-08
+ date: 9936-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 357baa8e1..4eb97239c 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: 9935-08-08
+ date: 9936-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 e9245c972..8ba5ecec6 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: 9935-08-08
+ date: 9936-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/technicat.com/index.it.md b/exampleSite/content/users/technicat.com/index.it.md
index a20a84331..6e8a3cc3b 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: 9970-08-08
+ date: 9971-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 fb2ca0de2..7c293cb42 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: 9970-08-08
+ date: 9971-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 9b1f2fe06..18e170028 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: 9970-08-08
+ date: 9971-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 4355bd9b1..24fff5269 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: 9970-08-08
+ date: 9971-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 ae1d8ce95..8c533a726 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 34fb6d08a..b4e9fb23d 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: 9932-08-08
+ date: 9934-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 7cd15327b..61b76cf81 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: 9932-08-08
+ date: 9934-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 957d3ac90..39774beaa 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: 9932-08-08
+ date: 9934-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 5f1f4b94a..e2bdd2fe5 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: 9932-08-08
+ date: 9934-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/theindiecoder.cloud/feature.jpg b/exampleSite/content/users/theindiecoder.cloud/feature.jpg
index ac9395987..3f4edc8f8 100644
Binary files a/exampleSite/content/users/theindiecoder.cloud/feature.jpg and b/exampleSite/content/users/theindiecoder.cloud/feature.jpg differ
diff --git a/exampleSite/content/users/theindiecoder.cloud/index.it.md b/exampleSite/content/users/theindiecoder.cloud/index.it.md
index 896deaadf..b0a331413 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: 9950-08-08
+ date: 9951-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 68b13d504..2a86adb36 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: 9950-08-08
+ date: 9951-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 3c4e5631c..76b85fac5 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: 9950-08-08
+ date: 9951-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 6633c5353..e0a72b0b7 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: 9950-08-08
+ date: 9951-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/todreamr.github.io/feature.jpg b/exampleSite/content/users/todreamr.github.io/feature.jpg
index 23009b66d..21e44593c 100644
Binary files a/exampleSite/content/users/todreamr.github.io/feature.jpg and b/exampleSite/content/users/todreamr.github.io/feature.jpg differ
diff --git a/exampleSite/content/users/todreamr.github.io/index.it.md b/exampleSite/content/users/todreamr.github.io/index.it.md
index c9f7005c6..43c92894a 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: 9926-08-08
+ date: 9928-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 12f9cfc35..f7f8f6803 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: 9926-08-08
+ date: 9928-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 2dc935c12..bbb460472 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: 9926-08-08
+ date: 9928-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 5f198b26b..be734945a 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: 9926-08-08
+ date: 9928-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/users.json b/exampleSite/content/users/users.json
index 5643fb1f0..73ecdde86 100644
--- a/exampleSite/content/users/users.json
+++ b/exampleSite/content/users/users.json
@@ -635,5 +635,23 @@
"Blog",
"Personal Site"
]
+ },
+ {
+ "title": "Synaptic Sugar",
+ "url": "https://synapticsugar.games",
+ "source": "n/a",
+ "tags": [
+ "Videogame Developer"
+ ]
+ },
+ {
+ "title": "michaeldorner.de",
+ "url": "https://www.michaeldorner.de",
+ "source": "n/a",
+ "tags": [
+ "Blog",
+ "Personal Site",
+ "Academia"
+ ]
}
]
diff --git a/exampleSite/content/users/v-y-s.com/feature.jpg b/exampleSite/content/users/v-y-s.com/feature.jpg
index 2df979001..b85f3808a 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 191720ce6..916dd06a3 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: 9939-08-08
+ date: 9940-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 4f7e0ed2b..07d4d223f 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: 9939-08-08
+ date: 9940-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 7e457e60e..be36a4b40 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: 9939-08-08
+ date: 9940-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 9129ba79c..096e564ba 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: 9939-08-08
+ date: 9940-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/vividscc.com/index.it.md b/exampleSite/content/users/vividscc.com/index.it.md
index 27cc5280e..5f28be4cc 100644
--- a/exampleSite/content/users/vividscc.com/index.it.md
+++ b/exampleSite/content/users/vividscc.com/index.it.md
@@ -2,7 +2,7 @@
title: "vividscc.com"
tags: [Sito aziendale]
externalUrl: "https://vividscc.com/"
- date: 9973-08-08
+ date: 9974-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/vividscc.com/index.ja.md b/exampleSite/content/users/vividscc.com/index.ja.md
index 18725107b..8b590ec08 100644
--- a/exampleSite/content/users/vividscc.com/index.ja.md
+++ b/exampleSite/content/users/vividscc.com/index.ja.md
@@ -2,7 +2,7 @@
title: "vividscc.com"
tags: [事業所]
externalUrl: "https://vividscc.com/"
- date: 9973-08-08
+ date: 9974-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/vividscc.com/index.md b/exampleSite/content/users/vividscc.com/index.md
index 55204d08b..0a2c86aa9 100644
--- a/exampleSite/content/users/vividscc.com/index.md
+++ b/exampleSite/content/users/vividscc.com/index.md
@@ -2,7 +2,7 @@
title: "vividscc.com"
tags: [Business site]
externalUrl: "https://vividscc.com/"
- date: 9973-08-08
+ date: 9974-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/vividscc.com/index.zh-cn.md b/exampleSite/content/users/vividscc.com/index.zh-cn.md
index b848bc46a..51a8f733f 100644
--- a/exampleSite/content/users/vividscc.com/index.zh-cn.md
+++ b/exampleSite/content/users/vividscc.com/index.zh-cn.md
@@ -2,7 +2,7 @@
title: "vividscc.com"
tags: [企业网站]
externalUrl: "https://vividscc.com/"
- date: 9973-08-08
+ date: 9974-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 bcf98d7f4..c1bdd2d11 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 3e874322c..76a3a94bf 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: 9953-08-08
+ date: 9954-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 73f29f560..128e4e259 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: 9953-08-08
+ date: 9954-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 00f16c7d1..b1d89dcc5 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: 9953-08-08
+ date: 9954-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 1d5146f87..fceb612a1 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: 9953-08-08
+ date: 9954-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/exampleSite/content/users/weaxsey.org/feature.jpg b/exampleSite/content/users/weaxsey.org/feature.jpg
index be7123e35..5a84902f7 100644
Binary files a/exampleSite/content/users/weaxsey.org/feature.jpg and b/exampleSite/content/users/weaxsey.org/feature.jpg differ
diff --git a/exampleSite/content/users/weaxsey.org/index.it.md b/exampleSite/content/users/weaxsey.org/index.it.md
index 4553ae16f..6f5a06030 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: 9962-08-08
+ date: 9963-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 c4b97d2f8..e8b810353 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: 9962-08-08
+ date: 9963-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 8975fa5da..74d12691e 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: 9962-08-08
+ date: 9963-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 d49612c74..5a42290fd 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: 9962-08-08
+ date: 9963-08-08
showDate: false
showAuthor: false
showReadingTime: false
diff --git a/layouts/partials/toc.html b/layouts/partials/toc.html
index e9dc950fd..b31701103 100644
--- a/layouts/partials/toc.html
+++ b/layouts/partials/toc.html
@@ -33,7 +33,7 @@
h.each(function (i, e) {
e = $(e);
if (e.offset().top - $(window).height()/3 <= currentScroll) {
- id = e.attr('id');
+ id = decodeURIComponent(e.attr('id'));
}
});
var active = $toc.find('a.active');
@@ -62,4 +62,4 @@
}
})();
-{{ end }}
\ No newline at end of file
+{{ end }}
diff --git a/layouts/shortcodes/codeimporter.html b/layouts/shortcodes/codeimporter.html
new file mode 100644
index 000000000..801697bc0
--- /dev/null
+++ b/layouts/shortcodes/codeimporter.html
@@ -0,0 +1,8 @@
+{{ $url := .Get "url" }}
+{{ $type := .Get "type" }}
+{{ with resources.GetRemote (printf $url) }}
+{{ $codeBlock := printf "```%s\n%s\n```" $type .Content }}
+{{ $codeBlock | markdownify }}
+{{ else }}
+{{ errorf "Code Importer Shortcode - Unable to get remote resource" . }}
+{{ end }}
diff --git a/layouts/shortcodes/timeline.html b/layouts/shortcodes/timeline.html
index 27ee729a8..efaf922c3 100644
--- a/layouts/shortcodes/timeline.html
+++ b/layouts/shortcodes/timeline.html
@@ -1,3 +1,3 @@
-
{{- .Inner -}}
+