Compare commits
36 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f2b934c8f4 | |||
| ad9ebc8456 | |||
| 84398af9c1 | |||
| c8c3ef706f | |||
| 1e1dff4af2 | |||
| dbe704f2e8 | |||
| 92348d0a7b | |||
| 6acb658a07 | |||
| 271a7df203 | |||
| a3583482b5 | |||
| f9505668e6 | |||
| d412084491 | |||
| 0189a57b76 | |||
| 58bea096cb | |||
| 97cae5ee6a | |||
| d0ada22e81 | |||
| d998d3b403 | |||
| 18428a79b8 | |||
| 174e07c675 | |||
| 1c1d3d95b0 | |||
| be4d9570e5 | |||
| ff7f3e4f3f | |||
| dd7d0d3431 | |||
| 9f8c1ab2cc | |||
| 773d32d378 | |||
| 984fef9309 | |||
| e7ce386049 | |||
| 13cb402dd0 | |||
| 225121b2f1 | |||
| b0eea59728 | |||
| ef2f7e6a95 | |||
| 0332cc6f45 | |||
| 214d65f076 | |||
| d20e2fb4e3 | |||
| 127a03b29c | |||
| 87893236dd |
@@ -2,4 +2,4 @@
|
|||||||
[module.hugoVersion]
|
[module.hugoVersion]
|
||||||
extended = true
|
extended = true
|
||||||
min = "0.87.0"
|
min = "0.87.0"
|
||||||
max = "0.122.0"
|
max = "0.123.1"
|
||||||
|
|||||||
@@ -67,6 +67,7 @@ The theme currently supports the following languages by default:
|
|||||||
| 🇦🇪 Arabic | `ar` |
|
| 🇦🇪 Arabic | `ar` |
|
||||||
| 🇧🇬 Bulgarian | `bg` |
|
| 🇧🇬 Bulgarian | `bg` |
|
||||||
| 🇧🇩 Bengali | `bn` |
|
| 🇧🇩 Bengali | `bn` |
|
||||||
|
| 🇪🇸 Catalan | `ca` |
|
||||||
| 🇨🇿 Czech | `cs` |
|
| 🇨🇿 Czech | `cs` |
|
||||||
| 🇩🇪 German | `de` |
|
| 🇩🇪 German | `de` |
|
||||||
| 🇬🇧 English | `en` |
|
| 🇬🇧 English | `en` |
|
||||||
|
|||||||
@@ -258,7 +258,7 @@ The default `name` is the `pageRef` title cased.
|
|||||||
|
|
||||||
## Thumbnails & Backgrounds
|
## Thumbnails & Backgrounds
|
||||||
|
|
||||||
Blowfish was built so it would be easy to add visual support to your articles. If your familiar with Hugo article structure, you just need to place an image file (almost all formats are supported but we recommend `.png` or `.jpg`) that starts with `feature*` inside your article folder. And that's it, Blowfish will then able to both use the image as a thumbnail within your website as well as for <a target="_blank" href="https://oembed.com/">oEmbed</a> cards across social platforms.
|
Blowfish was built so it would be easy to add visual support to your articles. If your familiar with Hugo article structure, you just need to place an image file (almost all formats are supported but we recommend `.png` or `.jpg`) that starts with `feature*` inside your article folder. And that's it, Blowfish will then be able to both use the image as a thumbnail within your website as well as for <a target="_blank" href="https://oembed.com/">oEmbed</a> cards across social platforms.
|
||||||
|
|
||||||
[Here]({{< ref "thumbnails" >}}) is also a guide with more info and a [sample]({{< ref "thumbnail_sample" >}}) if you want to see how you can do it.
|
[Here]({{< ref "thumbnails" >}}) is also a guide with more info and a [sample]({{< ref "thumbnail_sample" >}}) if you want to see how you can do it.
|
||||||
|
|
||||||
|
|||||||
@@ -31,13 +31,14 @@ content
|
|||||||
└── awesome_article.md
|
└── awesome_article.md
|
||||||
```
|
```
|
||||||
|
|
||||||
You need to change it from a single markdown file into a folder. Create a directory with the same name of the article, inside create a `index.md` file. You'll get a structure similar to what's below.
|
You need to change it from a single Markdown file into a folder. Create a directory with the same name of the article, inside create a `index.md` file. You'll get a structure similar to what's below.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
content
|
content
|
||||||
└── awesome_article
|
└── awesome_article
|
||||||
└── featured.png
|
└── index.md
|
||||||
```
|
```
|
||||||
|
|
||||||
Then you just need to add an image like explained earlier. If you want to see a sample of this, you can consult [this sample]({{< ref "thumbnail_sample" >}}).
|
Then you just need to add an image like explained earlier. If you want to see a sample of this, you can consult [this sample]({{< ref "thumbnail_sample" >}}).
|
||||||
|
|
||||||
## Hero Images
|
## Hero Images
|
||||||
|
|||||||
@@ -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>
|
<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 [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!
|
Thanks to submissions from the community, Blowfish has already been translated into [twenty-six 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
|
## RTL language support
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "50-nuances-octets.fr"
|
title: "50-nuances-octets.fr"
|
||||||
tags: [Organization site]
|
tags: [Organization site]
|
||||||
externalUrl: "https://www.50-nuances-octets.fr/"
|
externalUrl: "https://www.50-nuances-octets.fr/"
|
||||||
date: 9956-08-08
|
date: 9957-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "BoringTech.net"
|
title: "BoringTech.net"
|
||||||
tags: [Personal Site,Blog]
|
tags: [Personal Site,Blog]
|
||||||
externalUrl: "https://boringtech.net/"
|
externalUrl: "https://boringtech.net/"
|
||||||
date: 9932-08-08
|
date: 9934-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 147 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "DXPetti.com"
|
title: "DXPetti.com"
|
||||||
tags: [Personal site,Blog]
|
tags: [Personal site,Blog]
|
||||||
externalUrl: "https://www.dxpetti.com/"
|
externalUrl: "https://www.dxpetti.com/"
|
||||||
date: 9925-08-08
|
date: 9927-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
After Width: | Height: | Size: 74 KiB |
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
title: "Mare_Infinitus"
|
||||||
|
tags: [Personal Site,Blog]
|
||||||
|
externalUrl: "https://lab.imgb.space"
|
||||||
|
date: 9920-08-08
|
||||||
|
showDate: false
|
||||||
|
showAuthor: false
|
||||||
|
showReadingTime: false
|
||||||
|
showEdit: false
|
||||||
|
showLikes: false
|
||||||
|
showViews: false
|
||||||
|
layoutBackgroundHeaderSpace: false
|
||||||
|
---
|
||||||
|
After Width: | Height: | Size: 87 KiB |
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
title: "aakashnand.com"
|
||||||
|
tags: [Personal site]
|
||||||
|
externalUrl: "https://aakashnand.com/"
|
||||||
|
date: 9922-08-08
|
||||||
|
showDate: false
|
||||||
|
showAuthor: false
|
||||||
|
showReadingTime: false
|
||||||
|
showEdit: false
|
||||||
|
showLikes: false
|
||||||
|
showViews: false
|
||||||
|
layoutBackgroundHeaderSpace: false
|
||||||
|
---
|
||||||
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 46 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "adilhyz.github.io"
|
title: "adilhyz.github.io"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://adilhyz.github.io"
|
externalUrl: "https://adilhyz.github.io"
|
||||||
date: 9943-08-08
|
date: 9945-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 73 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "adir1.com"
|
title: "adir1.com"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://adir1.com/"
|
externalUrl: "https://adir1.com/"
|
||||||
date: 9975-08-08
|
date: 9976-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "alanctanner.com"
|
title: "alanctanner.com"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://alanctanner.com/"
|
externalUrl: "https://alanctanner.com/"
|
||||||
date: 9964-08-08
|
date: 9965-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "alejandro-ao.com"
|
title: "alejandro-ao.com"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://alejandro-ao.com/"
|
externalUrl: "https://alejandro-ao.com/"
|
||||||
date: 9976-08-08
|
date: 9977-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "alxhslm.github.io"
|
title: "alxhslm.github.io"
|
||||||
tags: [Personal Site]
|
tags: [Personal Site]
|
||||||
externalUrl: "https://alxhslm.github.io/"
|
externalUrl: "https://alxhslm.github.io/"
|
||||||
date: 9929-08-08
|
date: 9931-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "asterisk.lol"
|
title: "asterisk.lol"
|
||||||
tags: [Personal Site]
|
tags: [Personal Site]
|
||||||
externalUrl: "https://asterisk.lol"
|
externalUrl: "https://asterisk.lol"
|
||||||
date: 9924-08-08
|
date: 9926-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "bbagwang.com"
|
title: "bbagwang.com"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://bbagwang.com"
|
externalUrl: "https://bbagwang.com"
|
||||||
date: 9949-08-08
|
date: 9951-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 96 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "binarydigit.cafe"
|
title: "binarydigit.cafe"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://binarydigit.cafe/"
|
externalUrl: "https://binarydigit.cafe/"
|
||||||
date: 9930-08-08
|
date: 9932-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "blastomussa.dev"
|
title: "blastomussa.dev"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://blastomussa.dev"
|
externalUrl: "https://blastomussa.dev"
|
||||||
date: 9982-08-08
|
date: 9983-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 81 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "blog.enmanuelmoreira.com"
|
title: "blog.enmanuelmoreira.com"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://blog.enmanuelmoreira.com"
|
externalUrl: "https://blog.enmanuelmoreira.com"
|
||||||
date: 9958-08-08
|
date: 9959-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 177 KiB After Width: | Height: | Size: 177 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "blog.muffn.io"
|
title: "blog.muffn.io"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://blog.muffn.io/"
|
externalUrl: "https://blog.muffn.io/"
|
||||||
date: 9973-08-08
|
date: 9974-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "blog.stonegarden.dev"
|
title: "blog.stonegarden.dev"
|
||||||
tags: [Personal Site]
|
tags: [Personal Site]
|
||||||
externalUrl: "https://blog.stonegarden.dev/"
|
externalUrl: "https://blog.stonegarden.dev/"
|
||||||
date: 9934-08-08
|
date: 9936-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "cdell.io"
|
title: "cdell.io"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://cdell.io"
|
externalUrl: "https://cdell.io"
|
||||||
date: 9981-08-08
|
date: 9982-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "clemsau.com"
|
title: "clemsau.com"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://clemsau.com/"
|
externalUrl: "https://clemsau.com/"
|
||||||
date: 9962-08-08
|
date: 9963-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "ctulhu.me"
|
title: "ctulhu.me"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://ctulhu.me"
|
externalUrl: "https://ctulhu.me"
|
||||||
date: 9936-08-08
|
date: 9938-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 85 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "datatodroids.tech"
|
title: "datatodroids.tech"
|
||||||
tags: [Personal site,Blog]
|
tags: [Personal site,Blog]
|
||||||
externalUrl: "https://datatodroids.tech/"
|
externalUrl: "https://datatodroids.tech/"
|
||||||
date: 9926-08-08
|
date: 9928-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "deepumohan.com/tech"
|
title: "deepumohan.com/tech"
|
||||||
tags: [Technology Blog]
|
tags: [Technology Blog]
|
||||||
externalUrl: "https://deepumohan.com/tech/"
|
externalUrl: "https://deepumohan.com/tech/"
|
||||||
date: 9940-08-08
|
date: 9942-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "dizzytech.de"
|
title: "dizzytech.de"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://dizzytech.de"
|
externalUrl: "https://dizzytech.de"
|
||||||
date: 9977-08-08
|
date: 9978-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "ekwska.com"
|
title: "ekwska.com"
|
||||||
tags: [Personal blog]
|
tags: [Personal blog]
|
||||||
externalUrl: "https://ekwska.com"
|
externalUrl: "https://ekwska.com"
|
||||||
date: 9922-08-08
|
date: 9924-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "fm126.top"
|
title: "fm126.top"
|
||||||
tags: [Personal site,Blog]
|
tags: [Personal site,Blog]
|
||||||
externalUrl: "https://fm126.top/"
|
externalUrl: "https://fm126.top/"
|
||||||
date: 9928-08-08
|
date: 9930-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "fugugames.com"
|
title: "fugugames.com"
|
||||||
tags: [Games site]
|
tags: [Games site]
|
||||||
externalUrl: "https://fugugames.com/"
|
externalUrl: "https://fugugames.com/"
|
||||||
date: 9967-08-08
|
date: 9968-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "gma.name"
|
title: "gma.name"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://gma.name"
|
externalUrl: "https://gma.name"
|
||||||
date: 9946-08-08
|
date: 9948-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "halcyonstraits.com"
|
title: "halcyonstraits.com"
|
||||||
tags: [Doll photography]
|
tags: [Doll photography]
|
||||||
externalUrl: "https://www.halcyonstraits.com/"
|
externalUrl: "https://www.halcyonstraits.com/"
|
||||||
date: 9957-08-08
|
date: 9958-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 109 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "hyperbowl3d.com"
|
title: "hyperbowl3d.com"
|
||||||
tags: [Game site]
|
tags: [Game site]
|
||||||
externalUrl: "https://hyperbowl3d.com/"
|
externalUrl: "https://hyperbowl3d.com/"
|
||||||
date: 9966-08-08
|
date: 9967-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
After Width: | Height: | Size: 285 KiB |
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
title: "innerknowing"
|
||||||
|
tags: [Personal site,Modeller]
|
||||||
|
externalUrl: "https://innerknowing.xyz"
|
||||||
|
date: 9921-08-08
|
||||||
|
showDate: false
|
||||||
|
showAuthor: false
|
||||||
|
showReadingTime: false
|
||||||
|
showEdit: false
|
||||||
|
showLikes: false
|
||||||
|
showViews: false
|
||||||
|
layoutBackgroundHeaderSpace: false
|
||||||
|
---
|
||||||
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "jam.dsg.li"
|
title: "jam.dsg.li"
|
||||||
tags: [Organization site]
|
tags: [Organization site]
|
||||||
externalUrl: "https://jam.dsg.li"
|
externalUrl: "https://jam.dsg.li"
|
||||||
date: 9980-08-08
|
date: 9981-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "jamiemoxon.tech"
|
title: "jamiemoxon.tech"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://jamiemoxon.tech"
|
externalUrl: "https://jamiemoxon.tech"
|
||||||
date: 9948-08-08
|
date: 9950-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "joush007.github.io"
|
title: "joush007.github.io"
|
||||||
tags: [Personal Site]
|
tags: [Personal Site]
|
||||||
externalUrl: "https://joush007.github.io"
|
externalUrl: "https://joush007.github.io"
|
||||||
date: 9938-08-08
|
date: 9940-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "jundimubarok.com"
|
title: "jundimubarok.com"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://jundimubarok.com/"
|
externalUrl: "https://jundimubarok.com/"
|
||||||
date: 9951-08-08
|
date: 9953-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "kylemalloy.com"
|
title: "kylemalloy.com"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://kylemalloy.com"
|
externalUrl: "https://kylemalloy.com"
|
||||||
date: 9939-08-08
|
date: 9941-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 120 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "lelouvincx.github.io"
|
title: "lelouvincx.github.io"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://lelouvincx.github.io/"
|
externalUrl: "https://lelouvincx.github.io/"
|
||||||
date: 9961-08-08
|
date: 9962-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 46 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "m3upt.com"
|
title: "m3upt.com"
|
||||||
tags: [Project site]
|
tags: [Project site]
|
||||||
externalUrl: "https://m3upt.com"
|
externalUrl: "https://m3upt.com"
|
||||||
date: 9953-08-08
|
date: 9955-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 34 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "mariuskimmina.com"
|
title: "mariuskimmina.com"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://mariuskimmina.com/"
|
externalUrl: "https://mariuskimmina.com/"
|
||||||
date: 9969-08-08
|
date: 9970-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 83 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "marupanda.art/marucomics"
|
title: "marupanda.art/marucomics"
|
||||||
tags: [Comics site]
|
tags: [Comics site]
|
||||||
externalUrl: "https://marupanda.art/marucomics/"
|
externalUrl: "https://marupanda.art/marucomics/"
|
||||||
date: 9955-08-08
|
date: 9956-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 86 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "mayer.life"
|
title: "mayer.life"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://mayer.life"
|
externalUrl: "https://mayer.life"
|
||||||
date: 9945-08-08
|
date: 9947-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "muhalvin.github.io"
|
title: "muhalvin.github.io"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://muhalvin.github.io/"
|
externalUrl: "https://muhalvin.github.io/"
|
||||||
date: 9970-08-08
|
date: 9971-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 93 KiB After Width: | Height: | Size: 94 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "nick.bouwhuis.net"
|
title: "nick.bouwhuis.net"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://nick.bouwhuis.net"
|
externalUrl: "https://nick.bouwhuis.net"
|
||||||
date: 9972-08-08
|
date: 9973-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "nikarashihatsu.github.io"
|
title: "nikarashihatsu.github.io"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://nikarashihatsu.github.io/"
|
externalUrl: "https://nikarashihatsu.github.io/"
|
||||||
date: 9959-08-08
|
date: 9960-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 92 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "niklas-hartmann-dev.de"
|
title: "niklas-hartmann-dev.de"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://niklas-hartmann-dev.de/"
|
externalUrl: "https://niklas-hartmann-dev.de/"
|
||||||
date: 9974-08-08
|
date: 9975-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "notes.bluesdriveamelia.space"
|
title: "notes.bluesdriveamelia.space"
|
||||||
tags: [Blog,Personal site]
|
tags: [Blog,Personal site]
|
||||||
externalUrl: "https://notes.bluesdriveamelia.space/"
|
externalUrl: "https://notes.bluesdriveamelia.space/"
|
||||||
date: 9923-08-08
|
date: 9925-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 92 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "ohdmire.github.io"
|
title: "ohdmire.github.io"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://ohdmire.github.io"
|
externalUrl: "https://ohdmire.github.io"
|
||||||
date: 9942-08-08
|
date: 9944-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 81 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "pacochan.net"
|
title: "pacochan.net"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://pacochan.net"
|
externalUrl: "https://pacochan.net"
|
||||||
date: 9952-08-08
|
date: 9954-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "priyakdey.com"
|
title: "priyakdey.com"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://priyakdey.com"
|
externalUrl: "https://priyakdey.com"
|
||||||
date: 9979-08-08
|
date: 9980-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "rdgo.dev"
|
title: "rdgo.dev"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://rdgo.dev/"
|
externalUrl: "https://rdgo.dev/"
|
||||||
date: 9963-08-08
|
date: 9964-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "rejowski.xyz"
|
title: "rejowski.xyz"
|
||||||
tags: [Personal Site]
|
tags: [Personal Site]
|
||||||
externalUrl: "https://rejowski.xyz/"
|
externalUrl: "https://rejowski.xyz/"
|
||||||
date: 9937-08-08
|
date: 9939-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "renaud.warnotte.be"
|
title: "renaud.warnotte.be"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://renaud.warnotte.be"
|
externalUrl: "https://renaud.warnotte.be"
|
||||||
date: 9933-08-08
|
date: 9935-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 58 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "ricklan.photography"
|
title: "ricklan.photography"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://ricklan.photography"
|
externalUrl: "https://ricklan.photography"
|
||||||
date: 9941-08-08
|
date: 9943-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 122 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "scottmckendry.tech"
|
title: "scottmckendry.tech"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://scottmckendry.tech"
|
externalUrl: "https://scottmckendry.tech"
|
||||||
date: 9944-08-08
|
date: 9946-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "sdehm.dev"
|
title: "sdehm.dev"
|
||||||
tags: [Personal site]
|
tags: [Personal site]
|
||||||
externalUrl: "https://sdehm.dev"
|
externalUrl: "https://sdehm.dev"
|
||||||
date: 9978-08-08
|
date: 9979-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "talkdimsum.com"
|
title: "talkdimsum.com"
|
||||||
tags: [App site]
|
tags: [App site]
|
||||||
externalUrl: "https://talkdimsum.com/"
|
externalUrl: "https://talkdimsum.com/"
|
||||||
date: 9965-08-08
|
date: 9966-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
title: "technicaldc.github.io"
|
title: "technicaldc.github.io"
|
||||||
tags: [Personal Site,Blog]
|
tags: [Personal Site,Blog]
|
||||||
externalUrl: "https://technicaldc.github.io/"
|
externalUrl: "https://technicaldc.github.io/"
|
||||||
date: 9931-08-08
|
date: 9933-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 75 KiB |
@@ -2,7 +2,7 @@
|
|||||||
title: "technicat.com"
|
title: "technicat.com"
|
||||||
tags: [Company site]
|
tags: [Company site]
|
||||||
externalUrl: "https://technicat.com/"
|
externalUrl: "https://technicat.com/"
|
||||||
date: 9968-08-08
|
date: 9969-08-08
|
||||||
showDate: false
|
showDate: false
|
||||||
showAuthor: false
|
showAuthor: false
|
||||||
showReadingTime: false
|
showReadingTime: false
|
||||||
|
|||||||