Merge branch 'nunocoracao:main' into Galician
|
@ -2,4 +2,4 @@
|
|||
[module.hugoVersion]
|
||||
extended = true
|
||||
min = "0.87.0"
|
||||
max = "0.125.4"
|
||||
max = "0.125.7"
|
||||
|
|
|
@ -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/" >}}
|
||||
|
||||
<br/><br/><br/>
|
||||
|
||||
|
@ -188,6 +188,31 @@ You can see some additional Chart.js examples on the [charts samples]({{< ref "c
|
|||
|
||||
<br/><br/><br/>
|
||||
|
||||
## Code Importer
|
||||
|
||||
This shortcode is for importing code from external sources easily without copying and pasting.
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
| Parameter | Description |
|
||||
| --------- | ------------------------------------------------------- |
|
||||
| `url` | **Required** URL to an externally hosted code file. |
|
||||
| `type` | Code type used for syntax highlighting. |
|
||||
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
|
||||
**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" >}}
|
||||
|
||||
|
||||
<br/><br/>
|
||||
|
||||
## 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
|
|||
<img src="gallery/07.jpg" class="grid-w33" />
|
||||
{{< /gallery >}}
|
||||
{{</ timelineItem >}}
|
||||
|
||||
{{< timelineItem icon="code" header="Another Awesome Header">}}
|
||||
{{< github repo="nunocoracao/blowfish" >}}
|
||||
{{</ timelineItem >}}
|
||||
{{</ timeline >}}
|
||||
|
||||
|
||||
|
@ -739,16 +770,38 @@ A shortcut to embed youtube videos using the [lite-youtube-embed](https://github
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| Parameter | Description |
|
||||
| --------- | ----------------------------------- |
|
||||
| --------- | -------------------------------------------- |
|
||||
| `id` | [String] Youtube video id to embed. |
|
||||
| `label` | [String] Label for the video |
|
||||
| `params` | [String] Extras parameters for video playing |
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
**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.
|
||||
|
|
|
@ -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/" >}}
|
||||
|
||||
<br/><br/><br/>
|
||||
|
||||
|
@ -188,6 +188,31 @@ You can see some additional Chart.js examples on the [charts samples]({{< ref "c
|
|||
|
||||
<br/><br/><br/>
|
||||
|
||||
## Code Importer
|
||||
|
||||
This shortcode is for importing code from external sources easily without copying and pasting.
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
| Parameter | Description |
|
||||
| --------- | ------------------------------------------------------- |
|
||||
| `url` | **Required** URL to an externally hosted code file. |
|
||||
| `type` | Code type used for syntax highlighting. |
|
||||
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
|
||||
**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" >}}
|
||||
|
||||
|
||||
<br/><br/>
|
||||
|
||||
## 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
|
|||
<img src="gallery/07.jpg" class="grid-w33" />
|
||||
{{< /gallery >}}
|
||||
{{</ timelineItem >}}
|
||||
|
||||
{{< timelineItem icon="code" header="Another Awesome Header">}}
|
||||
{{< github repo="nunocoracao/blowfish" >}}
|
||||
{{</ timelineItem >}}
|
||||
{{</ timeline >}}
|
||||
|
||||
|
||||
|
@ -739,16 +770,38 @@ A shortcut to embed youtube videos using the [lite-youtube-embed](https://github
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| Parameter | Description |
|
||||
| --------- | ----------------------------------- |
|
||||
| --------- | -------------------------------------------- |
|
||||
| `id` | [String] Youtube video id to embed. |
|
||||
| `label` | [String] Label for the video |
|
||||
| `params` | [String] Extras parameters for video playing |
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
**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.
|
||||
|
|
|
@ -188,6 +188,31 @@ You can see some additional Chart.js examples on the [charts samples]({{< ref "c
|
|||
|
||||
<br/><br/><br/>
|
||||
|
||||
## Code Importer
|
||||
|
||||
This shortcode is for importing code from external sources easily without copying and pasting.
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
| Parameter | Description |
|
||||
| --------- | ------------------------------------------------------- |
|
||||
| `url` | **Required** URL to an externally hosted code file. |
|
||||
| `type` | Code type used for syntax highlighting. |
|
||||
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
|
||||
**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" >}}
|
||||
|
||||
|
||||
<br/><br/>
|
||||
|
||||
## 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
|
|||
<img src="gallery/07.jpg" class="grid-w33" />
|
||||
{{< /gallery >}}
|
||||
{{</ timelineItem >}}
|
||||
|
||||
{{< timelineItem icon="code" header="Another Awesome Header">}}
|
||||
{{< github repo="nunocoracao/blowfish" >}}
|
||||
{{</ timelineItem >}}
|
||||
{{</ timeline >}}
|
||||
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ series_order: 8
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| ----------- | -------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `icon` | **可选** 显示在左侧的图标。<br>**默认:** `exclaimation triangle icon` (查看[图标简码](#icon),了解有关使用图标的更多详细信息。) |
|
||||
| `iconColor` | **可选** 基本 CSS 样式中图标的颜色。<br>可以是十六进制值 (`#FFFFFF`) 或颜色名称 (`white`)<br>默认情况下由当前配色方案决定。 |
|
||||
| `cardColor` | **可选** 基本 CSS 样式中卡片背景的颜色。<br>可以是十六进制值 (`#FFFFFF`) 或颜色名称 (`white`)<br>默认情况下由当前配色方案决定。 |
|
||||
|
@ -70,7 +70,7 @@ This is an error!
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| --------- | -------------------------------------------------------- |
|
||||
| ------ | ------------------------------------- |
|
||||
| `link` | **必填** 要嵌入文章的 `.RelPermalink` |
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
|
@ -126,7 +126,7 @@ Call to action
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| ------------- | ----------------------------------------------------------------------------------------------------------------- |
|
||||
| ------------- | --------------------------------------------------------------------- |
|
||||
| `images` | **必填** 用于匹配图像名称的正则表达式或 URL。 |
|
||||
| `aspectRatio` | **可选** 画廊的纵横比。`16-9` 、`21-9` 或`32-9` 。默认设置为`16-9` 。 |
|
||||
| `interval` | **可选** 自动滚动的时间间隔,以毫秒为单位指定。默认为`2000`(2 秒)。 |
|
||||
|
@ -188,6 +188,32 @@ data: {
|
|||
|
||||
<br/><br/><br/>
|
||||
|
||||
## Code Importer
|
||||
|
||||
此短代码用于轻松从外部源导入代码,无需复制和粘贴
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
| Parameter | Description |
|
||||
| --------- | ---------------------------------- |
|
||||
| `url` | **必需的** 外部托管代码文件的 URL. |
|
||||
| `type` | 用于语法突出显示的代码类型. |
|
||||
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
|
||||
**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" >}}
|
||||
|
||||
|
||||
<br/><br/>
|
||||
|
||||
## Figure
|
||||
|
||||
Blowfish 包含一个 `figure` 简码,用于将图像添加到内容中。该简码取代了基本的 Hugo 功能,且性能更好。
|
||||
|
@ -198,7 +224,7 @@ Blowfish 包含一个 `figure` 简码,用于将图像添加到内容中。该
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `src` | **必填** 图像的本地路径/文件名或 URL。当提供路径和文件名时,主题将尝试使用以下查找顺序来查找图像:首先,作为与页面绑定的[页面资源](https://gohugo.io/content-management/page-resources/);然后是 `assets/` 目录中的文件;最后是,`static/`目录中的文件。 |
|
||||
| `alt` | 图像的[替代文本描述](https://moz.com/learn/seo/alt-text)。 |
|
||||
| `caption` | Markdown 格式的图像标题,将显示在图像下方。 |
|
||||
|
@ -298,7 +324,7 @@ Blowfish 还支持使用标准 Markdown 语法自动转换图像。只需使用
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| --------- | ----------------------------------------------------- |
|
||||
| ------ | ---------------------------------------------- |
|
||||
| `repo` | [String] 格式为 `username/repo` 的 github repo |
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
|
@ -321,7 +347,7 @@ Blowfish 还支持使用标准 Markdown 语法自动转换图像。只需使用
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| ----------- | ----------------------------------------------------------------------- |
|
||||
| ----------- | ----------------------------------------------------------- |
|
||||
| `projectID` | [String] gitlab 数字项目ID |
|
||||
| `baseURL` | [String] 可选 gitlab 实例 URL,默认为 `https://gitlab.com/` |
|
||||
<!-- prettier-ignore-end -->
|
||||
|
@ -387,7 +413,7 @@ Blowfish 还支持使用标准 Markdown 语法自动转换图像。只需使用
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| --------- | --------------------------------------- |
|
||||
| ------ | --------------------------- |
|
||||
| `icon` | **可选** 关键字中使用的图标 |
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
|
@ -444,7 +470,7 @@ When life gives you lemons, make lemonade.
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| ---------- | ------------------------------------------------------------------------------------------------------ |
|
||||
| `limit` | **必填** 要显示的最近文章数量。 |
|
||||
| `title` | **可选** 列表标题,默认为 `Recent` |
|
||||
| `cardView` | **可选** 列表启用卡片视图,默认为 `false` |
|
||||
|
@ -505,7 +531,7 @@ When life gives you lemons, make lemonade.
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| --------- | ------------------------------------------------------- |
|
||||
| ----- | --------------------------------------- |
|
||||
| `url` | **必填** 外部托管 Markdown 文件的 URL。 |
|
||||
|
||||
|
||||
|
@ -573,7 +599,7 @@ B-->C[Profit]
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| ----------- | -------------------------------------------- |
|
||||
| ----------- | ------------------------ |
|
||||
| `icon` | 要在时间线中使用的图标。 |
|
||||
| `header` | 每个条目的标题 |
|
||||
| `badge` | 放置在右上角徽章内的文本 |
|
||||
|
@ -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
|
|||
<img src="gallery/06.jpg" class="grid-w33" />
|
||||
<img src="gallery/07.jpg" class="grid-w33" />
|
||||
{{< /gallery >}}
|
||||
{{< timelineItem icon="code" header="Another Awesome Header">}}
|
||||
{{< github repo="nunocoracao/blowfish" >}}
|
||||
{{</ timelineItem >}}
|
||||
{{</ timelineItem >}}
|
||||
|
||||
{{</ timeline >}}
|
||||
|
@ -659,7 +692,7 @@ Blowfish 使用简码实现 TypeIt 功能的子集。在 `typeit` 简码中编
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| ------------------ | ------------------------------------------------------------------------- |
|
||||
| `tag` | [String] 将用于呈现字符串的 `html` 标签。 |
|
||||
| `classList` | [String] 应用于 `html` 元素的 `css` 类列表。 |
|
||||
| `initialString` | [String] 将显示为先写入并将被替换的初始字符串。 |
|
||||
|
@ -738,7 +771,7 @@ consectetur adipiscing elit.
|
|||
|
||||
<!-- prettier-ignore-start -->
|
||||
| 参数 | 功能 |
|
||||
| --------- | ----------------------------------- |
|
||||
| ------- | ----------------------------------- |
|
||||
| `id` | [String] 要嵌入的 YouTube 视频 ID。 |
|
||||
| `label` | [String] 视频的标签 |
|
||||
<!-- prettier-ignore-end -->
|
||||
|
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 46 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 80 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 147 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 85 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
BIN
exampleSite/content/users/Synaptic Sugar/feature.jpg
Normal file
After Width: | Height: | Size: 62 KiB |
14
exampleSite/content/users/Synaptic Sugar/index.it.md
Normal file
|
@ -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
|
||||
---
|
||||
|
14
exampleSite/content/users/Synaptic Sugar/index.ja.md
Normal file
|
@ -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
|
||||
---
|
||||
|
13
exampleSite/content/users/Synaptic Sugar/index.md
Normal file
|
@ -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
|
||||
---
|
14
exampleSite/content/users/Synaptic Sugar/index.zh-cn.md
Normal file
|
@ -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
|
||||
---
|
||||
|
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 97 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 60 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 184 KiB After Width: | Height: | Size: 184 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 91 KiB After Width: | Height: | Size: 92 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 113 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 93 KiB |
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|