|
@ -2,4 +2,4 @@
|
|||
[module.hugoVersion]
|
||||
extended = true
|
||||
min = "0.87.0"
|
||||
max = "0.127.0"
|
||||
max = "0.128.0"
|
||||
|
|
|
@ -74,7 +74,7 @@ disableTextInHeader = false
|
|||
showTaxonomies = false
|
||||
showAuthorsBadges = false
|
||||
showWordCount = true
|
||||
# sharingLinks = [ "linkedin", "twitter", "reddit", "pinterest", "facebook", "email", "whatsapp", "telegram"]
|
||||
# sharingLinks = [ "linkedin", "twitter", "bluesky", "reddit", "pinterest", "facebook", "email", "whatsapp", "telegram"]
|
||||
showZenMode = false
|
||||
|
||||
[list]
|
||||
|
|
|
@ -38,5 +38,10 @@
|
|||
"icon": "telegram",
|
||||
"title": "sharing.telegram",
|
||||
"url": "https://t.me/share/url?url=%s&resubmit=true&title=%s"
|
||||
},
|
||||
"bluesky": {
|
||||
"icon": "bluesky",
|
||||
"title": "sharing.bluesky",
|
||||
"url": "https://bsky.app/intent/compose?text=%[2]s+%[1]s"
|
||||
}
|
||||
}
|
|
@ -73,7 +73,7 @@ smartTOCHideUnfocusedChildren = false
|
|||
showTaxonomies = true
|
||||
showAuthorsBadges = true
|
||||
showWordCount = false
|
||||
sharingLinks = [ "linkedin", "twitter", "reddit", "whatsapp", "telegram", "pinterest", "facebook", "email"]
|
||||
sharingLinks = [ "linkedin", "twitter", "bluesky", "reddit", "whatsapp", "telegram", "pinterest", "facebook", "email"]
|
||||
showZenMode = true
|
||||
|
||||
[list]
|
||||
|
|
|
@ -88,6 +88,7 @@ The theme currently supports the following languages by default:
|
|||
| Russian | `ru` |
|
||||
| Turkish | `tr` |
|
||||
| Vietnamese | `vi` |
|
||||
| Ukrainian | `uk` |
|
||||
| Simplified Chinese (China) | `zh-cn` |
|
||||
| Traditional Chinese (Taiwan) | `zh-tw` |
|
||||
|
||||
|
|
|
@ -197,6 +197,8 @@ This shortcode is for importing code from external sources easily without copyin
|
|||
| --------- | ------------------------------------------------------- |
|
||||
| `url` | **Required** URL to an externally hosted code file. |
|
||||
| `type` | Code type used for syntax highlighting. |
|
||||
| `startLine` | **Optional** The line number to start the import from. |
|
||||
| `endLine` | **Optional** The line number to end the import at. |
|
||||
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
@ -210,6 +212,13 @@ This shortcode is for importing code from external sources easily without copyin
|
|||
```
|
||||
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
|
||||
|
||||
```md
|
||||
{{</* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
|
||||
|
||||
```
|
||||
|
||||
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18">}}
|
||||
|
||||
|
||||
<br/><br/>
|
||||
|
||||
|
|
|
@ -197,7 +197,8 @@ This shortcode is for importing code from external sources easily without copyin
|
|||
| --------- | ------------------------------------------------------- |
|
||||
| `url` | **Required** URL to an externally hosted code file. |
|
||||
| `type` | Code type used for syntax highlighting. |
|
||||
|
||||
| `startLine` | **Optional** The line number to start the import from. |
|
||||
| `endLine` | **Optional** The line number to end the import at. |
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
|
@ -210,6 +211,13 @@ This shortcode is for importing code from external sources easily without copyin
|
|||
```
|
||||
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
|
||||
|
||||
```md
|
||||
{{</* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
|
||||
|
||||
```
|
||||
|
||||
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18">}}
|
||||
|
||||
|
||||
<br/><br/>
|
||||
|
||||
|
|
|
@ -197,6 +197,8 @@ This shortcode is for importing code from external sources easily without copyin
|
|||
| --------- | ------------------------------------------------------- |
|
||||
| `url` | **Required** URL to an externally hosted code file. |
|
||||
| `type` | Code type used for syntax highlighting. |
|
||||
| `startLine` | **Optional** The line number to start the import from. |
|
||||
| `endLine` | **Optional** The line number to end the import at. |
|
||||
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
@ -210,6 +212,13 @@ This shortcode is for importing code from external sources easily without copyin
|
|||
```
|
||||
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
|
||||
|
||||
```md
|
||||
{{</* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
|
||||
|
||||
```
|
||||
|
||||
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18">}}
|
||||
|
||||
|
||||
<br/><br/>
|
||||
|
||||
|
|
|
@ -197,6 +197,8 @@ data: {
|
|||
| --------- | ---------------------------------- |
|
||||
| `url` | **必需的** 外部托管代码文件的 URL. |
|
||||
| `type` | 用于语法突出显示的代码类型. |
|
||||
| `startLine` | **可选** 从代码文件中导入的起始行. |
|
||||
| `endLine` | **可选** 从代码文件中导入的结束行. |
|
||||
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
@ -211,6 +213,13 @@ data: {
|
|||
|
||||
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/layouts/shortcodes/mdimporter.html" type="go" >}}
|
||||
|
||||
```md
|
||||
{{</* codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18" */>}}
|
||||
|
||||
```
|
||||
|
||||
{{< codeimporter url="https://raw.githubusercontent.com/nunocoracao/blowfish/main/config/_default/hugo.toml" type="toml" startLine="11" endLine="18">}}
|
||||
|
||||
|
||||
<br/><br/>
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ A highly requested feature, Blowfish is now multilingual! If you publish your co
|
|||
|
||||
<div class="text-2xl text-center" style="font-size: 2.8rem">:gb: :de: :fr: :es: :cn: :brazil: :tr: :bangladesh:</div>
|
||||
|
||||
Thanks to submissions from the community, Blowfish has already been translated into [twenty-seven languages](https://github.com/nunocoracao/blowfish/tree/main/i18n) with more to be added over time. By the way, [pull requests](https://github.com/nunocoracao/blowfish/pulls) for new languages are always welcome!
|
||||
Thanks to submissions from the community, Blowfish has already been translated into [twenty-eight languages](https://github.com/nunocoracao/blowfish/tree/main/i18n) with more to be added over time. By the way, [pull requests](https://github.com/nunocoracao/blowfish/pulls) for new languages are always welcome!
|
||||
|
||||
## RTL language support
|
||||
|
||||
|
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
|
@ -2,7 +2,7 @@
|
|||
title: "50-nuances-octets.fr"
|
||||
tags: [Sito dell'organizzazione]
|
||||
externalUrl: "https://www.50-nuances-octets.fr/"
|
||||
date: 9959-08-08
|
||||
date: 9960-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "50-nuances-octets.fr"
|
||||
tags: [組織サイト]
|
||||
externalUrl: "https://www.50-nuances-octets.fr/"
|
||||
date: 9959-08-08
|
||||
date: 9960-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "50-nuances-octets.fr"
|
||||
tags: [Organization site]
|
||||
externalUrl: "https://www.50-nuances-octets.fr/"
|
||||
date: 9959-08-08
|
||||
date: 9960-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "50-nuances-octets.fr"
|
||||
tags: [组织站点]
|
||||
externalUrl: "https://www.50-nuances-octets.fr/"
|
||||
date: 9959-08-08
|
||||
date: 9960-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
|
@ -2,7 +2,7 @@
|
|||
title: "Adam Madej - Gameplay Animator"
|
||||
tags: [Sito portfolio, Blog, Sito personale]
|
||||
externalUrl: "http://www.adammadej.com/"
|
||||
date: 9923-08-08
|
||||
date: 9925-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Adam Madej - Gameplay Animator"
|
||||
tags: [ポートフォリオサイト, ブログ, 個人サイト]
|
||||
externalUrl: "http://www.adammadej.com/"
|
||||
date: 9923-08-08
|
||||
date: 9925-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Adam Madej - Gameplay Animator"
|
||||
tags: [Portfolio Site,Blog,Personal Site]
|
||||
externalUrl: "http://www.adammadej.com/"
|
||||
date: 9923-08-08
|
||||
date: 9925-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Adam Madej - Gameplay Animator"
|
||||
tags: [作品集网站, 博客, 个人网站]
|
||||
externalUrl: "http://www.adammadej.com/"
|
||||
date: 9923-08-08
|
||||
date: 9925-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
BIN
exampleSite/content/users/Beauty Formulation/feature.jpg
Normal file
After Width: | Height: | Size: 92 KiB |
14
exampleSite/content/users/Beauty Formulation/index.it.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Beauty Formulation"
|
||||
tags: [Sito aziendale]
|
||||
externalUrl: "https://www.beautyformulation.com/"
|
||||
date: 9918-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
showEdit: false
|
||||
showLikes: false
|
||||
showViews: false
|
||||
layoutBackgroundHeaderSpace: false
|
||||
---
|
||||
|
14
exampleSite/content/users/Beauty Formulation/index.ja.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Beauty Formulation"
|
||||
tags: [企業サイト]
|
||||
externalUrl: "https://www.beautyformulation.com/"
|
||||
date: 9918-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
showEdit: false
|
||||
showLikes: false
|
||||
showViews: false
|
||||
layoutBackgroundHeaderSpace: false
|
||||
---
|
||||
|
13
exampleSite/content/users/Beauty Formulation/index.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: "Beauty Formulation"
|
||||
tags: [Company site]
|
||||
externalUrl: "https://www.beautyformulation.com/"
|
||||
date: 9918-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
showEdit: false
|
||||
showLikes: false
|
||||
showViews: false
|
||||
layoutBackgroundHeaderSpace: false
|
||||
---
|
14
exampleSite/content/users/Beauty Formulation/index.zh-cn.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Beauty Formulation"
|
||||
tags: [公司网站]
|
||||
externalUrl: "https://www.beautyformulation.com/"
|
||||
date: 9918-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
showEdit: false
|
||||
showLikes: false
|
||||
showViews: false
|
||||
layoutBackgroundHeaderSpace: false
|
||||
---
|
||||
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 80 KiB |
|
@ -2,7 +2,7 @@
|
|||
title: "BoringTech.net"
|
||||
tags: [Sito personale, Blog]
|
||||
externalUrl: "https://boringtech.net/"
|
||||
date: 9937-08-08
|
||||
date: 9938-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "BoringTech.net"
|
||||
tags: [個人サイト, ブログ]
|
||||
externalUrl: "https://boringtech.net/"
|
||||
date: 9937-08-08
|
||||
date: 9938-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "BoringTech.net"
|
||||
tags: [Personal Site,Blog]
|
||||
externalUrl: "https://boringtech.net/"
|
||||
date: 9937-08-08
|
||||
date: 9938-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "BoringTech.net"
|
||||
tags: [个人网站, 博客]
|
||||
externalUrl: "https://boringtech.net/"
|
||||
date: 9937-08-08
|
||||
date: 9938-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "DXPetti.com"
|
||||
tags: [Sito personale, Blog]
|
||||
externalUrl: "https://www.dxpetti.com/"
|
||||
date: 9932-08-08
|
||||
date: 9934-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "DXPetti.com"
|
||||
tags: [個人サイト, ブログ]
|
||||
externalUrl: "https://www.dxpetti.com/"
|
||||
date: 9932-08-08
|
||||
date: 9934-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "DXPetti.com"
|
||||
tags: [Personal site,Blog]
|
||||
externalUrl: "https://www.dxpetti.com/"
|
||||
date: 9932-08-08
|
||||
date: 9934-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "DXPetti.com"
|
||||
tags: [个人网站, 博客]
|
||||
externalUrl: "https://www.dxpetti.com/"
|
||||
date: 9932-08-08
|
||||
date: 9934-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
|
@ -2,7 +2,7 @@
|
|||
title: "Ignacio Conde"
|
||||
tags: [Sito personale, Sito portfolio, Sviluppatore di software, Sviluppatore di videogiochi]
|
||||
externalUrl: "http://www.ignaciomconde.com/"
|
||||
date: 9919-08-08
|
||||
date: 9921-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Ignacio Conde"
|
||||
tags: [個人サイト, ポートフォリオサイト, ソフトウェア開発者, ビデオゲーム開発者]
|
||||
externalUrl: "http://www.ignaciomconde.com/"
|
||||
date: 9919-08-08
|
||||
date: 9921-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Ignacio Conde"
|
||||
tags: [Personal Site,Portfolio Site,Software Developer,Videogame Developer]
|
||||
externalUrl: "http://www.ignaciomconde.com/"
|
||||
date: 9919-08-08
|
||||
date: 9921-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Ignacio Conde"
|
||||
tags: [个人网站, 作品集网站, 软件开发人员, 视频游戏开发商]
|
||||
externalUrl: "http://www.ignaciomconde.com/"
|
||||
date: 9919-08-08
|
||||
date: 9921-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Joshua Blais"
|
||||
tags: [Sito personale, Autore, Giardino digitale]
|
||||
externalUrl: "https://joshblais.com/"
|
||||
date: 9917-08-08
|
||||
date: 9919-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Joshua Blais"
|
||||
tags: [個人サイト, 著者, デジタルガーデン]
|
||||
externalUrl: "https://joshblais.com/"
|
||||
date: 9917-08-08
|
||||
date: 9919-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Joshua Blais"
|
||||
tags: [Personal Site,Author,Digital Garden]
|
||||
externalUrl: "https://joshblais.com/"
|
||||
date: 9917-08-08
|
||||
date: 9919-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Joshua Blais"
|
||||
tags: [个人网站, 作者, 数字花园]
|
||||
externalUrl: "https://joshblais.com/"
|
||||
date: 9917-08-08
|
||||
date: 9919-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 79 KiB |
|
@ -2,7 +2,7 @@
|
|||
title: "MEM v ENNBEE"
|
||||
tags: [Blog sulla tecnologia, Sito personale]
|
||||
externalUrl: "https://memv.ennbee.uk/"
|
||||
date: 9918-08-08
|
||||
date: 9920-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "MEM v ENNBEE"
|
||||
tags: [テクノロジーブログ, 個人サイト]
|
||||
externalUrl: "https://memv.ennbee.uk/"
|
||||
date: 9918-08-08
|
||||
date: 9920-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "MEM v ENNBEE"
|
||||
tags: [Technology Blog,Personal site]
|
||||
externalUrl: "https://memv.ennbee.uk/"
|
||||
date: 9918-08-08
|
||||
date: 9920-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "MEM v ENNBEE"
|
||||
tags: [技术博客, 个人网站]
|
||||
externalUrl: "https://memv.ennbee.uk/"
|
||||
date: 9918-08-08
|
||||
date: 9920-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 96 KiB |
|
@ -2,7 +2,7 @@
|
|||
title: "Mare_Infinitus"
|
||||
tags: [Sito personale, Blog]
|
||||
externalUrl: "https://lab.imgb.space"
|
||||
date: 9925-08-08
|
||||
date: 9927-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Mare_Infinitus"
|
||||
tags: [個人サイト, ブログ]
|
||||
externalUrl: "https://lab.imgb.space"
|
||||
date: 9925-08-08
|
||||
date: 9927-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Mare_Infinitus"
|
||||
tags: [Personal Site,Blog]
|
||||
externalUrl: "https://lab.imgb.space"
|
||||
date: 9925-08-08
|
||||
date: 9927-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Mare_Infinitus"
|
||||
tags: [个人网站, 博客]
|
||||
externalUrl: "https://lab.imgb.space"
|
||||
date: 9925-08-08
|
||||
date: 9927-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
BIN
exampleSite/content/users/Middle of Nowhere/feature.jpg
Normal file
After Width: | Height: | Size: 79 KiB |
14
exampleSite/content/users/Middle of Nowhere/index.it.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Middle of Nowhere"
|
||||
tags: [Sito personale, Blog]
|
||||
externalUrl: "https://blog.wtcx.dev/"
|
||||
date: 9917-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
showEdit: false
|
||||
showLikes: false
|
||||
showViews: false
|
||||
layoutBackgroundHeaderSpace: false
|
||||
---
|
||||
|
14
exampleSite/content/users/Middle of Nowhere/index.ja.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Middle of Nowhere"
|
||||
tags: [個人サイト, ブログ]
|
||||
externalUrl: "https://blog.wtcx.dev/"
|
||||
date: 9917-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
showEdit: false
|
||||
showLikes: false
|
||||
showViews: false
|
||||
layoutBackgroundHeaderSpace: false
|
||||
---
|
||||
|
13
exampleSite/content/users/Middle of Nowhere/index.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: "Middle of Nowhere"
|
||||
tags: [Personal Site,Blog]
|
||||
externalUrl: "https://blog.wtcx.dev/"
|
||||
date: 9917-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
showEdit: false
|
||||
showLikes: false
|
||||
showViews: false
|
||||
layoutBackgroundHeaderSpace: false
|
||||
---
|
14
exampleSite/content/users/Middle of Nowhere/index.zh-cn.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
title: "Middle of Nowhere"
|
||||
tags: [个人网站, 博客]
|
||||
externalUrl: "https://blog.wtcx.dev/"
|
||||
date: 9917-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
showEdit: false
|
||||
showLikes: false
|
||||
showViews: false
|
||||
layoutBackgroundHeaderSpace: false
|
||||
---
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
title: "Synaptic Sugar"
|
||||
tags: [Sviluppatore di videogiochi]
|
||||
externalUrl: "https://synapticsugar.games"
|
||||
date: 9921-08-08
|
||||
date: 9923-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Synaptic Sugar"
|
||||
tags: [ビデオゲーム開発者]
|
||||
externalUrl: "https://synapticsugar.games"
|
||||
date: 9921-08-08
|
||||
date: 9923-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Synaptic Sugar"
|
||||
tags: [Videogame Developer]
|
||||
externalUrl: "https://synapticsugar.games"
|
||||
date: 9921-08-08
|
||||
date: 9923-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "Synaptic Sugar"
|
||||
tags: [视频游戏开发商]
|
||||
externalUrl: "https://synapticsugar.games"
|
||||
date: 9921-08-08
|
||||
date: 9923-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "aakashnand.com"
|
||||
tags: [Sito personale]
|
||||
externalUrl: "https://aakashnand.com/"
|
||||
date: 9927-08-08
|
||||
date: 9929-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "aakashnand.com"
|
||||
tags: [個人サイト]
|
||||
externalUrl: "https://aakashnand.com/"
|
||||
date: 9927-08-08
|
||||
date: 9929-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "aakashnand.com"
|
||||
tags: [Personal site]
|
||||
externalUrl: "https://aakashnand.com/"
|
||||
date: 9927-08-08
|
||||
date: 9929-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "aakashnand.com"
|
||||
tags: [个人网站]
|
||||
externalUrl: "https://aakashnand.com/"
|
||||
date: 9927-08-08
|
||||
date: 9929-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "adilhyz.github.io"
|
||||
tags: [Sito personale]
|
||||
externalUrl: "https://adilhyz.github.io"
|
||||
date: 9947-08-08
|
||||
date: 9948-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "adilhyz.github.io"
|
||||
tags: [個人サイト]
|
||||
externalUrl: "https://adilhyz.github.io"
|
||||
date: 9947-08-08
|
||||
date: 9948-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "adilhyz.github.io"
|
||||
tags: [Personal site]
|
||||
externalUrl: "https://adilhyz.github.io"
|
||||
date: 9947-08-08
|
||||
date: 9948-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "adilhyz.github.io"
|
||||
tags: [个人网站]
|
||||
externalUrl: "https://adilhyz.github.io"
|
||||
date: 9947-08-08
|
||||
date: 9948-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "alanctanner.com"
|
||||
tags: [Sito personale]
|
||||
externalUrl: "https://alanctanner.com/"
|
||||
date: 9967-08-08
|
||||
date: 9968-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "alanctanner.com"
|
||||
tags: [個人サイト]
|
||||
externalUrl: "https://alanctanner.com/"
|
||||
date: 9967-08-08
|
||||
date: 9968-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "alanctanner.com"
|
||||
tags: [Personal site]
|
||||
externalUrl: "https://alanctanner.com/"
|
||||
date: 9967-08-08
|
||||
date: 9968-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "alanctanner.com"
|
||||
tags: [个人网站]
|
||||
externalUrl: "https://alanctanner.com/"
|
||||
date: 9967-08-08
|
||||
date: 9968-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "alxhslm.github.io"
|
||||
tags: [Sito personale]
|
||||
externalUrl: "https://alxhslm.github.io/"
|
||||
date: 9935-08-08
|
||||
date: 9936-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "alxhslm.github.io"
|
||||
tags: [個人サイト]
|
||||
externalUrl: "https://alxhslm.github.io/"
|
||||
date: 9935-08-08
|
||||
date: 9936-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "alxhslm.github.io"
|
||||
tags: [Personal Site]
|
||||
externalUrl: "https://alxhslm.github.io/"
|
||||
date: 9935-08-08
|
||||
date: 9936-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "alxhslm.github.io"
|
||||
tags: [个人网站]
|
||||
externalUrl: "https://alxhslm.github.io/"
|
||||
date: 9935-08-08
|
||||
date: 9936-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 73 KiB |
|
@ -2,7 +2,7 @@
|
|||
title: "asterisk.lol"
|
||||
tags: [Blog, Sito personale]
|
||||
externalUrl: "https://asterisk.lol"
|
||||
date: 9931-08-08
|
||||
date: 9933-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "asterisk.lol"
|
||||
tags: [ブログ, 個人サイト]
|
||||
externalUrl: "https://asterisk.lol"
|
||||
date: 9931-08-08
|
||||
date: 9933-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "asterisk.lol"
|
||||
tags: [Blog,Personal Site]
|
||||
externalUrl: "https://asterisk.lol"
|
||||
date: 9931-08-08
|
||||
date: 9933-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "asterisk.lol"
|
||||
tags: [博客, 个人网站]
|
||||
externalUrl: "https://asterisk.lol"
|
||||
date: 9931-08-08
|
||||
date: 9933-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
Before Width: | Height: | Size: 115 KiB After Width: | Height: | Size: 115 KiB |
|
@ -2,7 +2,7 @@
|
|||
title: "bbagwang.com"
|
||||
tags: [Sito personale]
|
||||
externalUrl: "https://bbagwang.com"
|
||||
date: 9953-08-08
|
||||
date: 9954-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "bbagwang.com"
|
||||
tags: [個人サイト]
|
||||
externalUrl: "https://bbagwang.com"
|
||||
date: 9953-08-08
|
||||
date: 9954-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "bbagwang.com"
|
||||
tags: [Personal site]
|
||||
externalUrl: "https://bbagwang.com"
|
||||
date: 9953-08-08
|
||||
date: 9954-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "bbagwang.com"
|
||||
tags: [个人网站]
|
||||
externalUrl: "https://bbagwang.com"
|
||||
date: 9953-08-08
|
||||
date: 9954-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 83 KiB |
|
@ -2,7 +2,7 @@
|
|||
title: "blog.enmanuelmoreira.com"
|
||||
tags: [Sito personale]
|
||||
externalUrl: "https://blog.enmanuelmoreira.com"
|
||||
date: 9961-08-08
|
||||
date: 9962-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "blog.enmanuelmoreira.com"
|
||||
tags: [個人サイト]
|
||||
externalUrl: "https://blog.enmanuelmoreira.com"
|
||||
date: 9961-08-08
|
||||
date: 9962-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "blog.enmanuelmoreira.com"
|
||||
tags: [Personal site]
|
||||
externalUrl: "https://blog.enmanuelmoreira.com"
|
||||
date: 9961-08-08
|
||||
date: 9962-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "blog.enmanuelmoreira.com"
|
||||
tags: [个人网站]
|
||||
externalUrl: "https://blog.enmanuelmoreira.com"
|
||||
date: 9961-08-08
|
||||
date: 9962-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
Before Width: | Height: | Size: 184 KiB After Width: | Height: | Size: 184 KiB |
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 91 KiB |
|
@ -2,7 +2,7 @@
|
|||
title: "blog.stonegarden.dev"
|
||||
tags: [Sito personale]
|
||||
externalUrl: "https://blog.stonegarden.dev/"
|
||||
date: 9939-08-08
|
||||
date: 9940-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "blog.stonegarden.dev"
|
||||
tags: [個人サイト]
|
||||
externalUrl: "https://blog.stonegarden.dev/"
|
||||
date: 9939-08-08
|
||||
date: 9940-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "blog.stonegarden.dev"
|
||||
tags: [Personal Site]
|
||||
externalUrl: "https://blog.stonegarden.dev/"
|
||||
date: 9939-08-08
|
||||
date: 9940-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "blog.stonegarden.dev"
|
||||
tags: [个人网站]
|
||||
externalUrl: "https://blog.stonegarden.dev/"
|
||||
date: 9939-08-08
|
||||
date: 9940-08-08
|
||||
showDate: false
|
||||
showAuthor: false
|
||||
showReadingTime: false
|
||||
|
|
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 57 KiB |