diff --git a/content/posts/one-word.de.md b/content/posts/one-word.de.md
index 5237866..a6efb48 100644
--- a/content/posts/one-word.de.md
+++ b/content/posts/one-word.de.md
@@ -1,6 +1,6 @@
+++
-title = 'Deutscher Test Post'
-date = 2025-04-05T20:14:29+02:00
+title = 'Ein Wort!'
+date = 2025-04-05T22:48:12+02:00
draft = false
toc = false
+++
diff --git a/content/posts/one-word.en.md b/content/posts/one-word.en.md
index b90f556..67188ad 100644
--- a/content/posts/one-word.en.md
+++ b/content/posts/one-word.en.md
@@ -1,5 +1,5 @@
+++
-title = 'English Test Post'
+title = 'One Word!'
date = 2025-04-05T22:48:12+02:00
draft = false
toc = false
diff --git a/content/posts/random-story.de.md b/content/posts/random-story.de.md
new file mode 100644
index 0000000..32ce88d
--- /dev/null
+++ b/content/posts/random-story.de.md
@@ -0,0 +1,21 @@
++++
+title = 'Eine beliebige Geschichte'
+date = 2025-04-08T17:55:25+02:00
+toc = true
+description = "Kleine Geschichte von ChatGPT, um die Lesezeiten einzustellen"
+draft = false
++++
+
+
+Dies ist eine beliebige Story, die von ChatGPT zum Testen und Einstellen der Lesezeit auf diesem Blog generiert wurde.
+
+## Prompt
+
+Erzähle eine Geschichte mit ca. 200 Wörtern.
+
+## Antwort
+
+Es war einmal in einem kleinen Dorf, umgeben von dichten Wäldern und sanften Hügeln. Dort lebte ein neugieriger Junge namens Leo, der von Abenteuern träumte. Eines Tages entdeckte er beim Spielen am Fluss einen geheimnisvollen, glitzernden Stein. Als er ihn aufhob, begann der Stein zu leuchten und eine sanfte Stimme flüsterte: „Folge dem Licht, und du wirst das Unbekannte entdecken.“
+Neugierig und aufgeregt folgte Leo dem strahlenden Licht, das ihn tief in den Wald führte. Nach einer Weile erreichte er eine versteckte Lichtung, auf der ein wunderschöner, schimmernder Baum stand. Die Blätter funkelten wie Diamanten, und in der Mitte des Baumes hockte ein kleiner, freundlicher Drache namens Fuego.
+Fuego erzählte Leo von einem magischen Reich, das nur durch Mut und Freundschaft betreten werden konnte. Gemeinsam erlebten sie aufregende Abenteuer, kämpften gegen Schattenwesen und halfen den Waldbewohnern. Leo lernte, dass wahre Stärke im Herzen liegt und dass Freundschaft die größte Magie von allen ist.
+Als Leo schließlich nach Hause zurückkehrte, wusste er, dass er nie wieder der gleiche Junge sein würde. Der glitzernde Stein blieb bei ihm, ein ständiger Erinnerungsanker an seine unvergesslichen Abenteuer.
diff --git a/content/posts/random-story.en.md b/content/posts/random-story.en.md
new file mode 100644
index 0000000..26ce469
--- /dev/null
+++ b/content/posts/random-story.en.md
@@ -0,0 +1,20 @@
++++
+title = 'A random story'
+date = 2025-04-08T17:55:25+02:00
+toc = true
+description = "Random story by ChatGPT to test out the perfect reading speed value"
+draft = false
++++
+
+This is just a random story, generated by ChatGPT, used to test the reading speed and adjust it to a comfortable value.
+
+## German prompt
+
+Tell a story with around 200 words.
+
+## Answer, translated to english
+
+Once upon a time, in a small village surrounded by dense forests and gentle hills, there lived a curious boy named Leo, who dreamed of adventures. One day, while playing by the river, he discovered a mysterious, glittering stone. As he picked it up, the stone began to glow, and a gentle voice whispered, “Follow the light, and you will discover the unknown.”
+Curious and excited, Leo followed the shining light, which led him deep into the woods. After a while, he reached a hidden clearing where a beautiful, shimmering tree stood. Its leaves sparkled like diamonds, and in the center of the tree sat a small, friendly dragon named Fuego.
+Fuego told Leo about a magical realm that could only be entered through courage and friendship. Together, they experienced thrilling adventures, fought against shadow creatures, and helped the forest inhabitants. Leo learned that true strength lies in the heart and that friendship is the greatest magic of all.
+When Leo finally returned home, he knew he would never be the same boy again. The glittering stone remained with him, a constant reminder of his unforgettable adventures.
diff --git a/hugo.toml b/hugo.toml
index ea3d611..9cf43a3 100644
--- a/hugo.toml
+++ b/hugo.toml
@@ -48,7 +48,7 @@ pagination.pagerSize = 5
# oneHeadingSize = true # default
# whether to show a page's estimated reading time
- readingTime = true # (default: false)
+ showReadingTime = true # (default: false)
# whether to show a table of contents
# can be overridden in a page's front-matter
@@ -74,6 +74,7 @@ pagination.pagerSize = 5
languageName = "English"
weight = 1
[languages.en.params]
+ readingSpeed = 108
subtitle = "Blog of privacynerd"
owner = ""
keywords = ""
@@ -129,6 +130,7 @@ pagination.pagerSize = 5
languageName = "Deutsch"
weight = 2
[languages.de.params]
+ readingSpeed = 111
subtitle = "Blog von privacynerd"
owner = ""
keywords = ""
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 739bca5..c896524 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -15,8 +15,8 @@
{{- with .Params.Author -}}
{{ . }}
{{- end -}}
- {{- if and (.Param "readingTime") (eq (.Param "readingTime") true) -}}
- {{ .ReadingTime }} {{ if eq .ReadingTime 1 }}{{ $.Site.Params._minute | default "minute" }}{{ else }}{{ $.Site.Params._minutes | default "minutes" }}{{ end }} {{$.Site.Params._readingTime | default "to read" }} ({{ .WordCount }} {{ if eq .WordCount 1 }}{{ $.Site.Params._word | default "word" }}{{ else }}{{ $.Site.Params._words | default "words" }}{{ end }})
+ {{- if and (.Param "ShowReadingTime") (eq (.Param "ShowReadingTime") true) -}}{{ $customReadingTime := div (float .WordCount) .Site.Params.readingSpeed }}{{ $customReadingTime = math.Ceil $customReadingTime }}{{ $customReadingTime }} {{ if eq $customReadingTime 1 }}{{ $.Site.Params._minute | default "minute" }}{{ else }}{{ $.Site.Params._minutes | default "minutes" }}{{ end }} {{$.Site.Params._readingTime | default "to read" }} ({{ .WordCount }} {{ if eq .WordCount 1 }}{{ $.Site.Params._word | default "word" }}{{ else }}{{ $.Site.Params._words | default "words" }}{{ end }})
{{- end -}}
{{ partial "comments_counter.html" . }}
diff --git a/public/de/about/index.html b/public/de/about/index.html
index e04ea7d..472cc86 100644
--- a/public/de/about/index.html
+++ b/public/de/about/index.html
@@ -199,7 +199,7 @@ Below you can read the original about from Radek
diff --git a/public/de/index.xml b/public/de/index.xml
index c1fdffd..f1d83d1 100644
--- a/public/de/index.xml
+++ b/public/de/index.xml
@@ -6,11 +6,36 @@
Recent content on Privacynerd's blogHugo -- gohugo.iode
- Sat, 05 Apr 2025 20:14:29 +0200
+ Tue, 08 Apr 2025 17:55:25 +0200
- Deutscher Test Post
+ Eine beliebige Geschichte
+ https://blog.privacynerd.de/de/posts/random-story/
+ Tue, 08 Apr 2025 17:55:25 +0200
+
+ https://blog.privacynerd.de/de/posts/random-story/
+ <p>Dies ist eine beliebige Story, die von ChatGPT zum Testen und Einstellen der Lesezeit auf diesem Blog generiert wurde.</p>
+<h2 id="prompt">Prompt</h2>
+<p>Erzähle eine Geschichte mit ca. 200 Wörtern.</p>
+<h2 id="antwort">Antwort</h2>
+<p>Es war einmal in einem kleinen Dorf, umgeben von dichten Wäldern und sanften Hügeln. Dort lebte ein neugieriger Junge namens Leo, der von Abenteuern träumte. Eines Tages entdeckte er beim Spielen am Fluss einen geheimnisvollen, glitzernden Stein. Als er ihn aufhob, begann der Stein zu leuchten und eine sanfte Stimme flüsterte: „Folge dem Licht, und du wirst das Unbekannte entdecken.“
+Neugierig und aufgeregt folgte Leo dem strahlenden Licht, das ihn tief in den Wald führte. Nach einer Weile erreichte er eine versteckte Lichtung, auf der ein wunderschöner, schimmernder Baum stand. Die Blätter funkelten wie Diamanten, und in der Mitte des Baumes hockte ein kleiner, freundlicher Drache namens Fuego.
+Fuego erzählte Leo von einem magischen Reich, das nur durch Mut und Freundschaft betreten werden konnte. Gemeinsam erlebten sie aufregende Abenteuer, kämpften gegen Schattenwesen und halfen den Waldbewohnern. Leo lernte, dass wahre Stärke im Herzen liegt und dass Freundschaft die größte Magie von allen ist.
+Als Leo schließlich nach Hause zurückkehrte, wusste er, dass er nie wieder der gleiche Junge sein würde. Der glitzernde Stein blieb bei ihm, ein ständiger Erinnerungsanker an seine unvergesslichen Abenteuer.</p>
+ <p>Dies ist eine beliebige Story, die von ChatGPT zum Testen und Einstellen der Lesezeit auf diesem Blog generiert wurde.</p>
+<h2 id="prompt">Prompt</h2>
+<p>Erzähle eine Geschichte mit ca. 200 Wörtern.</p>
+<h2 id="antwort">Antwort</h2>
+<p>Es war einmal in einem kleinen Dorf, umgeben von dichten Wäldern und sanften Hügeln. Dort lebte ein neugieriger Junge namens Leo, der von Abenteuern träumte. Eines Tages entdeckte er beim Spielen am Fluss einen geheimnisvollen, glitzernden Stein. Als er ihn aufhob, begann der Stein zu leuchten und eine sanfte Stimme flüsterte: „Folge dem Licht, und du wirst das Unbekannte entdecken.“
+Neugierig und aufgeregt folgte Leo dem strahlenden Licht, das ihn tief in den Wald führte. Nach einer Weile erreichte er eine versteckte Lichtung, auf der ein wunderschöner, schimmernder Baum stand. Die Blätter funkelten wie Diamanten, und in der Mitte des Baumes hockte ein kleiner, freundlicher Drache namens Fuego.
+Fuego erzählte Leo von einem magischen Reich, das nur durch Mut und Freundschaft betreten werden konnte. Gemeinsam erlebten sie aufregende Abenteuer, kämpften gegen Schattenwesen und halfen den Waldbewohnern. Leo lernte, dass wahre Stärke im Herzen liegt und dass Freundschaft die größte Magie von allen ist.
+Als Leo schließlich nach Hause zurückkehrte, wusste er, dass er nie wieder der gleiche Junge sein würde. Der glitzernde Stein blieb bei ihm, ein ständiger Erinnerungsanker an seine unvergesslichen Abenteuer.</p>
+
+
+
+
+ Ein Wort!
https://blog.privacynerd.de/de/posts/one-word/
- Sat, 05 Apr 2025 20:14:29 +0200
+ Sat, 05 Apr 2025 22:48:12 +0200https://blog.privacynerd.de/de/posts/one-word/<h1 id="nureinwort">Nureinwort</h1>
diff --git a/public/de/posts/index.html b/public/de/posts/index.html
index 934ae10..b381d43 100644
--- a/public/de/posts/index.html
+++ b/public/de/posts/index.html
@@ -194,7 +194,35 @@
diff --git a/public/de/posts/index.xml b/public/de/posts/index.xml
index e1b6013..1dcdd97 100644
--- a/public/de/posts/index.xml
+++ b/public/de/posts/index.xml
@@ -6,11 +6,36 @@
Recent content in Posts on Privacynerd's blogHugo -- gohugo.iode
- Sat, 05 Apr 2025 20:14:29 +0200
+ Tue, 08 Apr 2025 17:55:25 +0200
- Deutscher Test Post
+ Eine beliebige Geschichte
+ https://blog.privacynerd.de/de/posts/random-story/
+ Tue, 08 Apr 2025 17:55:25 +0200
+
+ https://blog.privacynerd.de/de/posts/random-story/
+ <p>Dies ist eine beliebige Story, die von ChatGPT zum Testen und Einstellen der Lesezeit auf diesem Blog generiert wurde.</p>
+<h2 id="prompt">Prompt</h2>
+<p>Erzähle eine Geschichte mit ca. 200 Wörtern.</p>
+<h2 id="antwort">Antwort</h2>
+<p>Es war einmal in einem kleinen Dorf, umgeben von dichten Wäldern und sanften Hügeln. Dort lebte ein neugieriger Junge namens Leo, der von Abenteuern träumte. Eines Tages entdeckte er beim Spielen am Fluss einen geheimnisvollen, glitzernden Stein. Als er ihn aufhob, begann der Stein zu leuchten und eine sanfte Stimme flüsterte: „Folge dem Licht, und du wirst das Unbekannte entdecken.“
+Neugierig und aufgeregt folgte Leo dem strahlenden Licht, das ihn tief in den Wald führte. Nach einer Weile erreichte er eine versteckte Lichtung, auf der ein wunderschöner, schimmernder Baum stand. Die Blätter funkelten wie Diamanten, und in der Mitte des Baumes hockte ein kleiner, freundlicher Drache namens Fuego.
+Fuego erzählte Leo von einem magischen Reich, das nur durch Mut und Freundschaft betreten werden konnte. Gemeinsam erlebten sie aufregende Abenteuer, kämpften gegen Schattenwesen und halfen den Waldbewohnern. Leo lernte, dass wahre Stärke im Herzen liegt und dass Freundschaft die größte Magie von allen ist.
+Als Leo schließlich nach Hause zurückkehrte, wusste er, dass er nie wieder der gleiche Junge sein würde. Der glitzernde Stein blieb bei ihm, ein ständiger Erinnerungsanker an seine unvergesslichen Abenteuer.</p>
+ <p>Dies ist eine beliebige Story, die von ChatGPT zum Testen und Einstellen der Lesezeit auf diesem Blog generiert wurde.</p>
+<h2 id="prompt">Prompt</h2>
+<p>Erzähle eine Geschichte mit ca. 200 Wörtern.</p>
+<h2 id="antwort">Antwort</h2>
+<p>Es war einmal in einem kleinen Dorf, umgeben von dichten Wäldern und sanften Hügeln. Dort lebte ein neugieriger Junge namens Leo, der von Abenteuern träumte. Eines Tages entdeckte er beim Spielen am Fluss einen geheimnisvollen, glitzernden Stein. Als er ihn aufhob, begann der Stein zu leuchten und eine sanfte Stimme flüsterte: „Folge dem Licht, und du wirst das Unbekannte entdecken.“
+Neugierig und aufgeregt folgte Leo dem strahlenden Licht, das ihn tief in den Wald führte. Nach einer Weile erreichte er eine versteckte Lichtung, auf der ein wunderschöner, schimmernder Baum stand. Die Blätter funkelten wie Diamanten, und in der Mitte des Baumes hockte ein kleiner, freundlicher Drache namens Fuego.
+Fuego erzählte Leo von einem magischen Reich, das nur durch Mut und Freundschaft betreten werden konnte. Gemeinsam erlebten sie aufregende Abenteuer, kämpften gegen Schattenwesen und halfen den Waldbewohnern. Leo lernte, dass wahre Stärke im Herzen liegt und dass Freundschaft die größte Magie von allen ist.
+Als Leo schließlich nach Hause zurückkehrte, wusste er, dass er nie wieder der gleiche Junge sein würde. Der glitzernde Stein blieb bei ihm, ein ständiger Erinnerungsanker an seine unvergesslichen Abenteuer.</p>
+
+
+
+
+ Ein Wort!
https://blog.privacynerd.de/de/posts/one-word/
- Sat, 05 Apr 2025 20:14:29 +0200
+ Sat, 05 Apr 2025 22:48:12 +0200https://blog.privacynerd.de/de/posts/one-word/<h1 id="nureinwort">Nureinwort</h1>
diff --git a/public/de/posts/one-word/index.html b/public/de/posts/one-word/index.html
index 57aeb55..bbcec45 100644
--- a/public/de/posts/one-word/index.html
+++ b/public/de/posts/one-word/index.html
@@ -2,7 +2,7 @@
- Deutscher Test Post :: Privacynerd's blog
+ Ein Wort! :: Privacynerd's blog
@@ -47,7 +47,7 @@
-
+
@@ -60,7 +60,7 @@
-
+
@@ -191,9 +191,9 @@
Es war einmal in einem kleinen Dorf, umgeben von dichten Wäldern und sanften Hügeln. Dort lebte ein neugieriger Junge namens Leo, der von Abenteuern träumte. Eines Tages entdeckte er beim Spielen am Fluss einen geheimnisvollen, glitzernden Stein. Als er ihn aufhob, begann der Stein zu leuchten und eine sanfte Stimme flüsterte: „Folge dem Licht, und du wirst das Unbekannte entdecken.“
+Neugierig und aufgeregt folgte Leo dem strahlenden Licht, das ihn tief in den Wald führte. Nach einer Weile erreichte er eine versteckte Lichtung, auf der ein wunderschöner, schimmernder Baum stand. Die Blätter funkelten wie Diamanten, und in der Mitte des Baumes hockte ein kleiner, freundlicher Drache namens Fuego.
+Fuego erzählte Leo von einem magischen Reich, das nur durch Mut und Freundschaft betreten werden konnte. Gemeinsam erlebten sie aufregende Abenteuer, kämpften gegen Schattenwesen und halfen den Waldbewohnern. Leo lernte, dass wahre Stärke im Herzen liegt und dass Freundschaft die größte Magie von allen ist.
+Als Leo schließlich nach Hause zurückkehrte, wusste er, dass er nie wieder der gleiche Junge sein würde. Der glitzernde Stein blieb bei ihm, ein ständiger Erinnerungsanker an seine unvergesslichen Abenteuer.
diff --git a/public/en/index.xml b/public/en/index.xml
index 102fe42..6adc5ee 100644
--- a/public/en/index.xml
+++ b/public/en/index.xml
@@ -6,9 +6,34 @@
Recent content on Privacynerd's blogHugo -- gohugo.ioen
- Sat, 05 Apr 2025 22:48:12 +0200
+ Tue, 08 Apr 2025 17:55:25 +0200
- English Test Post
+ A random story
+ https://blog.privacynerd.de/en/posts/random-story/
+ Tue, 08 Apr 2025 17:55:25 +0200
+
+ https://blog.privacynerd.de/en/posts/random-story/
+ <p>This is just a random story, generated by ChatGPT, used to test the reading speed and adjust it to a comfortable value.</p>
+<h2 id="german-prompt">German prompt</h2>
+<p>Tell a story with around 200 words.</p>
+<h2 id="answer-translated-to-english">Answer, translated to english</h2>
+<p>Once upon a time, in a small village surrounded by dense forests and gentle hills, there lived a curious boy named Leo, who dreamed of adventures. One day, while playing by the river, he discovered a mysterious, glittering stone. As he picked it up, the stone began to glow, and a gentle voice whispered, “Follow the light, and you will discover the unknown.”
+Curious and excited, Leo followed the shining light, which led him deep into the woods. After a while, he reached a hidden clearing where a beautiful, shimmering tree stood. Its leaves sparkled like diamonds, and in the center of the tree sat a small, friendly dragon named Fuego.
+Fuego told Leo about a magical realm that could only be entered through courage and friendship. Together, they experienced thrilling adventures, fought against shadow creatures, and helped the forest inhabitants. Leo learned that true strength lies in the heart and that friendship is the greatest magic of all.
+When Leo finally returned home, he knew he would never be the same boy again. The glittering stone remained with him, a constant reminder of his unforgettable adventures.</p>
+ <p>This is just a random story, generated by ChatGPT, used to test the reading speed and adjust it to a comfortable value.</p>
+<h2 id="german-prompt">German prompt</h2>
+<p>Tell a story with around 200 words.</p>
+<h2 id="answer-translated-to-english">Answer, translated to english</h2>
+<p>Once upon a time, in a small village surrounded by dense forests and gentle hills, there lived a curious boy named Leo, who dreamed of adventures. One day, while playing by the river, he discovered a mysterious, glittering stone. As he picked it up, the stone began to glow, and a gentle voice whispered, “Follow the light, and you will discover the unknown.”
+Curious and excited, Leo followed the shining light, which led him deep into the woods. After a while, he reached a hidden clearing where a beautiful, shimmering tree stood. Its leaves sparkled like diamonds, and in the center of the tree sat a small, friendly dragon named Fuego.
+Fuego told Leo about a magical realm that could only be entered through courage and friendship. Together, they experienced thrilling adventures, fought against shadow creatures, and helped the forest inhabitants. Leo learned that true strength lies in the heart and that friendship is the greatest magic of all.
+When Leo finally returned home, he knew he would never be the same boy again. The glittering stone remained with him, a constant reminder of his unforgettable adventures.</p>
+
+
+
+
+ One Word!
https://blog.privacynerd.de/en/posts/one-word/
Sat, 05 Apr 2025 22:48:12 +0200
diff --git a/public/en/posts/index.html b/public/en/posts/index.html
index 3ba44ca..1463edf 100644
--- a/public/en/posts/index.html
+++ b/public/en/posts/index.html
@@ -194,7 +194,35 @@
diff --git a/public/en/posts/index.xml b/public/en/posts/index.xml
index 170cda1..3443fe5 100644
--- a/public/en/posts/index.xml
+++ b/public/en/posts/index.xml
@@ -6,9 +6,34 @@
Recent content in Posts on Privacynerd's blogHugo -- gohugo.ioen
- Sat, 05 Apr 2025 22:48:12 +0200
+ Tue, 08 Apr 2025 17:55:25 +0200
- English Test Post
+ A random story
+ https://blog.privacynerd.de/en/posts/random-story/
+ Tue, 08 Apr 2025 17:55:25 +0200
+
+ https://blog.privacynerd.de/en/posts/random-story/
+ <p>This is just a random story, generated by ChatGPT, used to test the reading speed and adjust it to a comfortable value.</p>
+<h2 id="german-prompt">German prompt</h2>
+<p>Tell a story with around 200 words.</p>
+<h2 id="answer-translated-to-english">Answer, translated to english</h2>
+<p>Once upon a time, in a small village surrounded by dense forests and gentle hills, there lived a curious boy named Leo, who dreamed of adventures. One day, while playing by the river, he discovered a mysterious, glittering stone. As he picked it up, the stone began to glow, and a gentle voice whispered, “Follow the light, and you will discover the unknown.”
+Curious and excited, Leo followed the shining light, which led him deep into the woods. After a while, he reached a hidden clearing where a beautiful, shimmering tree stood. Its leaves sparkled like diamonds, and in the center of the tree sat a small, friendly dragon named Fuego.
+Fuego told Leo about a magical realm that could only be entered through courage and friendship. Together, they experienced thrilling adventures, fought against shadow creatures, and helped the forest inhabitants. Leo learned that true strength lies in the heart and that friendship is the greatest magic of all.
+When Leo finally returned home, he knew he would never be the same boy again. The glittering stone remained with him, a constant reminder of his unforgettable adventures.</p>
+ <p>This is just a random story, generated by ChatGPT, used to test the reading speed and adjust it to a comfortable value.</p>
+<h2 id="german-prompt">German prompt</h2>
+<p>Tell a story with around 200 words.</p>
+<h2 id="answer-translated-to-english">Answer, translated to english</h2>
+<p>Once upon a time, in a small village surrounded by dense forests and gentle hills, there lived a curious boy named Leo, who dreamed of adventures. One day, while playing by the river, he discovered a mysterious, glittering stone. As he picked it up, the stone began to glow, and a gentle voice whispered, “Follow the light, and you will discover the unknown.”
+Curious and excited, Leo followed the shining light, which led him deep into the woods. After a while, he reached a hidden clearing where a beautiful, shimmering tree stood. Its leaves sparkled like diamonds, and in the center of the tree sat a small, friendly dragon named Fuego.
+Fuego told Leo about a magical realm that could only be entered through courage and friendship. Together, they experienced thrilling adventures, fought against shadow creatures, and helped the forest inhabitants. Leo learned that true strength lies in the heart and that friendship is the greatest magic of all.
+When Leo finally returned home, he knew he would never be the same boy again. The glittering stone remained with him, a constant reminder of his unforgettable adventures.</p>
+
+
+
+
+ One Word!
https://blog.privacynerd.de/en/posts/one-word/
Sat, 05 Apr 2025 22:48:12 +0200
diff --git a/public/en/posts/one-word/index.html b/public/en/posts/one-word/index.html
index 3c15596..d31d2f6 100644
--- a/public/en/posts/one-word/index.html
+++ b/public/en/posts/one-word/index.html
@@ -2,7 +2,7 @@
- English Test Post :: Privacynerd's blog
+ One Word! :: Privacynerd's blog
@@ -47,7 +47,7 @@
-
+
@@ -191,9 +191,9 @@
Once upon a time, in a small village surrounded by dense forests and gentle hills, there lived a curious boy named Leo, who dreamed of adventures. One day, while playing by the river, he discovered a mysterious, glittering stone. As he picked it up, the stone began to glow, and a gentle voice whispered, “Follow the light, and you will discover the unknown.”
+Curious and excited, Leo followed the shining light, which led him deep into the woods. After a while, he reached a hidden clearing where a beautiful, shimmering tree stood. Its leaves sparkled like diamonds, and in the center of the tree sat a small, friendly dragon named Fuego.
+Fuego told Leo about a magical realm that could only be entered through courage and friendship. Together, they experienced thrilling adventures, fought against shadow creatures, and helped the forest inhabitants. Leo learned that true strength lies in the heart and that friendship is the greatest magic of all.
+When Leo finally returned home, he knew he would never be the same boy again. The glittering stone remained with him, a constant reminder of his unforgettable adventures.