Skip to content

Commit

Permalink
Merge pull request #1572 from nunocoracao/dev
Browse files Browse the repository at this point in the history
🔖 v2.72.0
  • Loading branch information
nunocoracao authored Jun 27, 2024
2 parents 8972e66 + 9aaff79 commit 9e19e93
Show file tree
Hide file tree
Showing 282 changed files with 570 additions and 304 deletions.
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
[module.hugoVersion]
extended = true
min = "0.87.0"
max = "0.127.0"
max = "0.128.0"
2 changes: 1 addition & 1 deletion config/_default/params.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
5 changes: 5 additions & 0 deletions data/sharing.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
2 changes: 1 addition & 1 deletion exampleSite/config/_default/params.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
1 change: 1 addition & 0 deletions exampleSite/content/docs/configuration/index.it.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |

Expand Down
9 changes: 9 additions & 0 deletions exampleSite/content/docs/shortcodes/index.it.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 -->
Expand All @@ -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/>

Expand Down
10 changes: 9 additions & 1 deletion exampleSite/content/docs/shortcodes/index.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 -->

Expand All @@ -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/>

Expand Down
9 changes: 9 additions & 0 deletions exampleSite/content/docs/shortcodes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 -->
Expand All @@ -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/>

Expand Down
9 changes: 9 additions & 0 deletions exampleSite/content/docs/shortcodes/index.zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ data: {
| --------- | ---------------------------------- |
| `url` | **必需的** 外部托管代码文件的 URL. |
| `type` | 用于语法突出显示的代码类型. |
| `startLine` | **可选** 从代码文件中导入的起始行. |
| `endLine` | **可选** 从代码文件中导入的结束行. |


<!-- prettier-ignore-end -->
Expand All @@ -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/>

Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/docs/welcome/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Binary file modified exampleSite/content/users/50-nuances-octets.fr/feature.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion exampleSite/content/users/50-nuances-octets.fr/index.it.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/50-nuances-octets.fr/index.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/50-nuances-octets.fr/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions exampleSite/content/users/Beauty Formulation/index.it.md
Original file line number Diff line number Diff line change
@@ -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
---

Expand Down
14 changes: 14 additions & 0 deletions exampleSite/content/users/Beauty Formulation/index.ja.md
Original file line number Diff line number Diff line change
@@ -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
---

Expand Down
13 changes: 13 additions & 0 deletions exampleSite/content/users/Beauty Formulation/index.md
Original file line number Diff line number Diff line change
@@ -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
---
Expand Down
14 changes: 14 additions & 0 deletions exampleSite/content/users/Beauty Formulation/index.zh-cn.md
Original file line number Diff line number Diff line change
@@ -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
---

Expand Down
Binary file modified exampleSite/content/users/BoringTech.net/feature.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion exampleSite/content/users/BoringTech.net/index.it.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/BoringTech.net/index.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/BoringTech.net/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/BoringTech.net/index.zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/DXPetti.com/index.it.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/DXPetti.com/index.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/DXPetti.com/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/DXPetti.com/index.zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file modified exampleSite/content/users/Ignacio Conde/feature.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion exampleSite/content/users/Ignacio Conde/index.it.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/Ignacio Conde/index.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/Ignacio Conde/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/Ignacio Conde/index.zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/content/users/Joshua Blais/index.it.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading

0 comments on commit 9e19e93

Please sign in to comment.