Improved reading speed values (made them more realistic); for this, a new (partially) ai-generated article has been added

This commit is contained in:
BlueFox 2025-04-08 18:16:55 +02:00
parent 7e2c01abd9
commit 400c937e57
Signed by: BlueFox
GPG Key ID: 327233DA85435270
25 changed files with 965 additions and 70 deletions

View File

@ -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
+++

View File

@ -1,5 +1,5 @@
+++
title = 'English Test Post'
title = 'One Word!'
date = 2025-04-05T22:48:12+02:00
draft = false
toc = false

View File

@ -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.

View File

@ -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.

View File

@ -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 = ""

View File

@ -15,8 +15,8 @@
{{- with .Params.Author -}}
<span class="post-author">{{ . }}</span>
{{- end -}}
{{- if and (.Param "readingTime") (eq (.Param "readingTime") true) -}}
<span class="post-reading-time">{{ .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 }})</span>
{{- if and (.Param "ShowReadingTime") (eq (.Param "ShowReadingTime") true) -}}{{ $customReadingTime := div (float .WordCount) .Site.Params.readingSpeed }}{{ $customReadingTime = math.Ceil $customReadingTime }}<!-- (browsers insert spaces sometimes)
--><span class="post-reading-time">{{ $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 }})</span>
{{- end -}}
<!-- comments counter -->{{ partial "comments_counter.html" . }}
</div>

View File

@ -199,7 +199,7 @@ Below you can read the original about from Radek
<h1 class="post-title">
<a href="https://blog.privacynerd.de/de/about/">Über</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">1 Minute Lesezeit (190 Wörter)</span>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">2 Minuten Lesezeit (190 Wörter)</span>
</div>

View File

@ -204,7 +204,36 @@
<article class="post on-list">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/de/posts/one-word/">Deutscher Test Post</a>
<a href="https://blog.privacynerd.de/de/posts/random-story/">Eine beliebige Geschichte</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-08</time>
</div>
<div class="post-content">
Kleine Geschichte von ChatGPT, um die Lesezeiten einzustellen
</div>
<div>
<a class="read-more button" href="/de/posts/random-story/">Mehr lesen →</a>
</div>
</article>
<article class="post on-list">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/de/posts/one-word/">Ein Wort!</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-05</time>

View File

@ -6,11 +6,36 @@
<description>Recent content on Privacynerd&#39;s blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>de</language>
<lastBuildDate>Sat, 05 Apr 2025 20:14:29 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/de/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Tue, 08 Apr 2025 17:55:25 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/de/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Deutscher Test Post</title>
<title>Eine beliebige Geschichte</title>
<link>https://blog.privacynerd.de/de/posts/random-story/</link>
<pubDate>Tue, 08 Apr 2025 17:55:25 +0200</pubDate>
<guid>https://blog.privacynerd.de/de/posts/random-story/</guid>
<description>&lt;p&gt;Dies ist eine beliebige Story, die von ChatGPT zum Testen und Einstellen der Lesezeit auf diesem Blog generiert wurde.&lt;/p&gt;
&lt;h2 id=&#34;prompt&#34;&gt;Prompt&lt;/h2&gt;
&lt;p&gt;Erzähle eine Geschichte mit ca. 200 Wörtern.&lt;/p&gt;
&lt;h2 id=&#34;antwort&#34;&gt;Antwort&lt;/h2&gt;
&lt;p&gt;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.&lt;/p&gt;</description>
<content>&lt;p&gt;Dies ist eine beliebige Story, die von ChatGPT zum Testen und Einstellen der Lesezeit auf diesem Blog generiert wurde.&lt;/p&gt;
&lt;h2 id=&#34;prompt&#34;&gt;Prompt&lt;/h2&gt;
&lt;p&gt;Erzähle eine Geschichte mit ca. 200 Wörtern.&lt;/p&gt;
&lt;h2 id=&#34;antwort&#34;&gt;Antwort&lt;/h2&gt;
&lt;p&gt;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.&lt;/p&gt;
</content>
</item>
<item>
<title>Ein Wort!</title>
<link>https://blog.privacynerd.de/de/posts/one-word/</link>
<pubDate>Sat, 05 Apr 2025 20:14:29 +0200</pubDate>
<pubDate>Sat, 05 Apr 2025 22:48:12 +0200</pubDate>
<guid>https://blog.privacynerd.de/de/posts/one-word/</guid>
<description>&lt;h1 id=&#34;nureinwort&#34;&gt;Nureinwort&lt;/h1&gt;</description>

View File

@ -194,7 +194,35 @@
<article class="post on-list">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/de/posts/one-word/">Deutscher Test Post</a>
<a href="https://blog.privacynerd.de/de/posts/random-story/">Eine beliebige Geschichte</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-08</time>
</div>
<div class="post-content">
Kleine Geschichte von ChatGPT, um die Lesezeiten einzustellen
</div>
<div>
<a class="read-more button" href="/de/posts/random-story/">Mehr lesen →</a>
</div>
</article>
<article class="post on-list">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/de/posts/one-word/">Ein Wort!</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-05</time>

View File

@ -6,11 +6,36 @@
<description>Recent content in Posts on Privacynerd&#39;s blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>de</language>
<lastBuildDate>Sat, 05 Apr 2025 20:14:29 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/de/posts/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Tue, 08 Apr 2025 17:55:25 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/de/posts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Deutscher Test Post</title>
<title>Eine beliebige Geschichte</title>
<link>https://blog.privacynerd.de/de/posts/random-story/</link>
<pubDate>Tue, 08 Apr 2025 17:55:25 +0200</pubDate>
<guid>https://blog.privacynerd.de/de/posts/random-story/</guid>
<description>&lt;p&gt;Dies ist eine beliebige Story, die von ChatGPT zum Testen und Einstellen der Lesezeit auf diesem Blog generiert wurde.&lt;/p&gt;
&lt;h2 id=&#34;prompt&#34;&gt;Prompt&lt;/h2&gt;
&lt;p&gt;Erzähle eine Geschichte mit ca. 200 Wörtern.&lt;/p&gt;
&lt;h2 id=&#34;antwort&#34;&gt;Antwort&lt;/h2&gt;
&lt;p&gt;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.&lt;/p&gt;</description>
<content>&lt;p&gt;Dies ist eine beliebige Story, die von ChatGPT zum Testen und Einstellen der Lesezeit auf diesem Blog generiert wurde.&lt;/p&gt;
&lt;h2 id=&#34;prompt&#34;&gt;Prompt&lt;/h2&gt;
&lt;p&gt;Erzähle eine Geschichte mit ca. 200 Wörtern.&lt;/p&gt;
&lt;h2 id=&#34;antwort&#34;&gt;Antwort&lt;/h2&gt;
&lt;p&gt;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.&lt;/p&gt;
</content>
</item>
<item>
<title>Ein Wort!</title>
<link>https://blog.privacynerd.de/de/posts/one-word/</link>
<pubDate>Sat, 05 Apr 2025 20:14:29 +0200</pubDate>
<pubDate>Sat, 05 Apr 2025 22:48:12 +0200</pubDate>
<guid>https://blog.privacynerd.de/de/posts/one-word/</guid>
<description>&lt;h1 id=&#34;nureinwort&#34;&gt;Nureinwort&lt;/h1&gt;</description>

View File

@ -2,7 +2,7 @@
<html lang="de">
<head>
<title>Deutscher Test Post :: Privacynerd&#39;s blog</title>
<title>Ein Wort! :: Privacynerd&#39;s blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -47,7 +47,7 @@
<meta property="og:locale" content="de" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Deutscher Test Post">
<meta property="og:title" content="Ein Wort!">
<meta property="og:description" content="Nureinwort" />
<meta property="og:url" content="https://blog.privacynerd.de/de/posts/one-word/" />
<meta property="og:site_name" content="Privacynerd&#39;s blog" />
@ -60,7 +60,7 @@
<meta property="og:image:height" content="627">
<meta property="article:published_time" content="2025-04-05 20:14:29 &#43;0200 CEST" />
<meta property="article:published_time" content="2025-04-05 22:48:12 &#43;0200 CEST" />
@ -191,9 +191,9 @@
<article class="post">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/de/posts/one-word/">Deutscher Test Post</a>
<a href="https://blog.privacynerd.de/de/posts/one-word/">Ein Wort!</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">1 Minute Lesezeit (1 Wort)</span>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">1 Minuten Lesezeit (1 Wort)</span>
</div>
@ -218,6 +218,13 @@
</div>
<div class="pagination__buttons">
<span class="button previous">
<a href="https://blog.privacynerd.de/de/posts/random-story/">
<span class="button__icon"></span>
<span class="button__text">Eine beliebige Geschichte</span>
</a>
</span>
<span class="button next">
<a href="https://blog.privacynerd.de/de/posts/test-post/">

View File

@ -0,0 +1,299 @@
<!DOCTYPE html>
<html lang="de">
<head>
<title>Eine beliebige Geschichte :: Privacynerd&#39;s blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Kleine Geschichte von ChatGPT, um die Lesezeiten einzustellen" />
<meta name="keywords" content="" />
<meta name="robots" content="noodp" />
<link rel="canonical" href="https://blog.privacynerd.de/de/posts/random-story/" />
<link rel="stylesheet" href="https://blog.privacynerd.de/styles.css">
<link rel="shortcut icon" href="https://blog.privacynerd.de/favicon.ico">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="" />
<meta name="twitter:creator" content="" />
<meta property="og:locale" content="de" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Eine beliebige Geschichte">
<meta property="og:description" content="Kleine Geschichte von ChatGPT, um die Lesezeiten einzustellen" />
<meta property="og:url" content="https://blog.privacynerd.de/de/posts/random-story/" />
<meta property="og:site_name" content="Privacynerd&#39;s blog" />
<meta property="og:image" content="https://blog.privacynerd.de/favicon.ico">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="627">
<meta property="article:published_time" content="2025-04-08 17:55:25 &#43;0200 CEST" />
</head>
<body class="green">
<div id="banner">
<span>
<a href="https://git.privacynerd.de/git.privacynerd.de/blog.privacynerd.de">Baustelle 🚧 | laufende Arbeiten</a>
</span>
</div>
<div class="container center headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="/de">
<div class="logo">
Privacynerd&#39;s blog
</div>
</a>
</div>
<ul class="menu menu--mobile">
<li class="menu__trigger">Menü&nbsp;</li>
<li>
<ul class="menu__dropdown">
<li><a href="/de/about">Über</a></li>
<li><a href="/de/tags">Tags</a></li>
<li><a href="/de/categories">Kategorien</a></li>
<hr />
<li>
<a href='/en/posts/random-story/'>English</a>
</li>
<li>
<a href='/de/posts/random-story/'>Deutsch</a>
</li>
</ul>
</li>
</ul>
<ul class="menu menu--desktop menu--language-selector">
<li class="menu__trigger">de&nbsp;</li>
<li>
<ul class="menu__dropdown">
<li><a href='/en/posts/random-story/'>English</a></li>
<li><a href='/de/posts/random-story/'>Deutsch</a></li>
</ul>
</li>
</ul>
</div>
<nav class="navigation-menu">
<ul class="navigation-menu__inner menu--desktop">
<li><a href="/de/about" >Über</a></li>
<li><a href="/de/tags" >Tags</a></li>
<li><a href="/de/categories" >Kategorien</a></li>
</ul>
</nav>
</header>
<div class="content">
<article class="post">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/de/posts/random-story/">Eine beliebige Geschichte</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-08</time><span class="post-reading-time">2 Minuten Lesezeit (211 Wörter)</span>
</div>
<div class="table-of-contents">
<h2>
Inhaltsverzeichnis
</h2>
<nav id="TableOfContents">
<ul>
<li><a href="#prompt">Prompt</a></li>
<li><a href="#antwort">Antwort</a></li>
</ul>
</nav>
</div>
<div class="post-content"><div>
<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<a href="#prompt" class="hanchor" ariaLabel="Anchor">&#8983;</a> </h2>
<p>Erzähle eine Geschichte mit ca. 200 Wörtern.</p>
<h2 id="antwort">Antwort<a href="#antwort" class="hanchor" ariaLabel="Anchor">&#8983;</a> </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>
</div></div>
<div class="pagination">
<div class="pagination__title">
<span class="pagination__title-h">Andere Posts lesen</span>
<hr />
</div>
<div class="pagination__buttons">
<span class="button next">
<a href="https://blog.privacynerd.de/de/posts/one-word/">
<span class="button__text">Ein Wort!</span>
<span class="button__icon"></span>
</a>
</span>
</div>
</div>
</article>
</div>
<footer class="footer">
<style>
.antidiscovery i { display: none; }
</style>
<div class="footer__inner">
<div class="copyright copyright--user">
<span class="antidiscovery">© 2025 <i>L</i>B<i>P</i>e<i>o</i>n<i>i</i>j<i>n</i>a<i>c</i>m<i>G</i>i<i>N</i>n<i>U</i> <i>S</i>B<i>k</i>u<i>o</i>r<i>K</i>k<i>y</i>h<i>f</i>a<i>H</i>r<i>r</i>d<i>y</i>t</span>
<span style="margin-right: 10px">:: <a href="https://privacynerd.de/impressum?referrer=https%3a%2f%2fblog.privacynerd.de%2fde%2fposts%2frandom-story%2f">Impressum</a></span>
<span>:: <a href="https://github.com/mirus-ua/hugo-theme-re-terminal" target="_blank">Theme</a> von <a href="https://github.com/mirus-ua" target="_blank">Mirus</a> (angepasst)</span>
</div>
</div>
</footer>
<script type="text/javascript" src="/bundle.min.js"></script>
<script type="text/javascript" src="/js/banner.min.js"></script>
</div>
</body>
</html>

View File

@ -195,7 +195,7 @@
<h1 class="post-title">
<a href="https://blog.privacynerd.de/de/posts/test-post/">Deutscher Test Post</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">2 Minuten Lesezeit (369 Wörter)</span>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">4 Minuten Lesezeit (369 Wörter)</span>
</div>
@ -251,7 +251,7 @@
<span class="button previous">
<a href="https://blog.privacynerd.de/de/posts/one-word/">
<span class="button__icon"></span>
<span class="button__text">Deutscher Test Post</span>
<span class="button__text">Ein Wort!</span>
</a>
</span>

View File

@ -2,8 +2,47 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://blog.privacynerd.de/de/posts/random-story/</loc>
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://blog.privacynerd.de/en/posts/random-story/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://blog.privacynerd.de/de/posts/random-story/"
/>
</url><url>
<loc>https://blog.privacynerd.de/de/posts/</loc>
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://blog.privacynerd.de/en/posts/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://blog.privacynerd.de/de/posts/"
/>
</url><url>
<loc>https://blog.privacynerd.de/de/</loc>
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://blog.privacynerd.de/en/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://blog.privacynerd.de/de/"
/>
</url><url>
<loc>https://blog.privacynerd.de/de/posts/one-word/</loc>
<lastmod>2025-04-05T20:14:29+02:00</lastmod>
<lastmod>2025-04-05T22:48:12+02:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
@ -27,32 +66,6 @@
hreflang="de"
href="https://blog.privacynerd.de/de/posts/test-post/"
/>
</url><url>
<loc>https://blog.privacynerd.de/de/posts/</loc>
<lastmod>2025-04-05T20:14:29+02:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://blog.privacynerd.de/en/posts/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://blog.privacynerd.de/de/posts/"
/>
</url><url>
<loc>https://blog.privacynerd.de/de/</loc>
<lastmod>2025-04-05T20:14:29+02:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://blog.privacynerd.de/en/"
/>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://blog.privacynerd.de/de/"
/>
</url><url>
<loc>https://blog.privacynerd.de/de/about/</loc>
<lastmod>2025-04-05T20:14:29+02:00</lastmod>

View File

@ -199,7 +199,7 @@ Below you can read the original about from Radek
<h1 class="post-title">
<a href="https://blog.privacynerd.de/en/about/">About</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">1 minute to read (190 words)</span>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">2 minutes to read (190 words)</span>
</div>

View File

@ -204,7 +204,36 @@
<article class="post on-list">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/en/posts/one-word/">English Test Post</a>
<a href="https://blog.privacynerd.de/en/posts/random-story/">A random story</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-08</time>
</div>
<div class="post-content">
Random story by ChatGPT to test out the perfect reading speed value
</div>
<div>
<a class="read-more button" href="/en/posts/random-story/">Read more →</a>
</div>
</article>
<article class="post on-list">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/en/posts/one-word/">One Word!</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-05</time>

View File

@ -6,9 +6,34 @@
<description>Recent content on Privacynerd&#39;s blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sat, 05 Apr 2025 22:48:12 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/en/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Tue, 08 Apr 2025 17:55:25 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/en/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>English Test Post</title>
<title>A random story</title>
<link>https://blog.privacynerd.de/en/posts/random-story/</link>
<pubDate>Tue, 08 Apr 2025 17:55:25 +0200</pubDate>
<guid>https://blog.privacynerd.de/en/posts/random-story/</guid>
<description>&lt;p&gt;This is just a random story, generated by ChatGPT, used to test the reading speed and adjust it to a comfortable value.&lt;/p&gt;
&lt;h2 id=&#34;german-prompt&#34;&gt;German prompt&lt;/h2&gt;
&lt;p&gt;Tell a story with around 200 words.&lt;/p&gt;
&lt;h2 id=&#34;answer-translated-to-english&#34;&gt;Answer, translated to english&lt;/h2&gt;
&lt;p&gt;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.&lt;/p&gt;</description>
<content>&lt;p&gt;This is just a random story, generated by ChatGPT, used to test the reading speed and adjust it to a comfortable value.&lt;/p&gt;
&lt;h2 id=&#34;german-prompt&#34;&gt;German prompt&lt;/h2&gt;
&lt;p&gt;Tell a story with around 200 words.&lt;/p&gt;
&lt;h2 id=&#34;answer-translated-to-english&#34;&gt;Answer, translated to english&lt;/h2&gt;
&lt;p&gt;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.&lt;/p&gt;
</content>
</item>
<item>
<title>One Word!</title>
<link>https://blog.privacynerd.de/en/posts/one-word/</link>
<pubDate>Sat, 05 Apr 2025 22:48:12 +0200</pubDate>

View File

@ -194,7 +194,35 @@
<article class="post on-list">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/en/posts/one-word/">English Test Post</a>
<a href="https://blog.privacynerd.de/en/posts/random-story/">A random story</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-08</time>
</div>
<div class="post-content">
Random story by ChatGPT to test out the perfect reading speed value
</div>
<div>
<a class="read-more button" href="/en/posts/random-story/">Read more →</a>
</div>
</article>
<article class="post on-list">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/en/posts/one-word/">One Word!</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-05</time>

View File

@ -6,9 +6,34 @@
<description>Recent content in Posts on Privacynerd&#39;s blog</description>
<generator>Hugo -- gohugo.io</generator>
<language>en</language>
<lastBuildDate>Sat, 05 Apr 2025 22:48:12 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/en/posts/index.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>Tue, 08 Apr 2025 17:55:25 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/en/posts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>English Test Post</title>
<title>A random story</title>
<link>https://blog.privacynerd.de/en/posts/random-story/</link>
<pubDate>Tue, 08 Apr 2025 17:55:25 +0200</pubDate>
<guid>https://blog.privacynerd.de/en/posts/random-story/</guid>
<description>&lt;p&gt;This is just a random story, generated by ChatGPT, used to test the reading speed and adjust it to a comfortable value.&lt;/p&gt;
&lt;h2 id=&#34;german-prompt&#34;&gt;German prompt&lt;/h2&gt;
&lt;p&gt;Tell a story with around 200 words.&lt;/p&gt;
&lt;h2 id=&#34;answer-translated-to-english&#34;&gt;Answer, translated to english&lt;/h2&gt;
&lt;p&gt;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.&lt;/p&gt;</description>
<content>&lt;p&gt;This is just a random story, generated by ChatGPT, used to test the reading speed and adjust it to a comfortable value.&lt;/p&gt;
&lt;h2 id=&#34;german-prompt&#34;&gt;German prompt&lt;/h2&gt;
&lt;p&gt;Tell a story with around 200 words.&lt;/p&gt;
&lt;h2 id=&#34;answer-translated-to-english&#34;&gt;Answer, translated to english&lt;/h2&gt;
&lt;p&gt;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.&lt;/p&gt;
</content>
</item>
<item>
<title>One Word!</title>
<link>https://blog.privacynerd.de/en/posts/one-word/</link>
<pubDate>Sat, 05 Apr 2025 22:48:12 +0200</pubDate>

View File

@ -2,7 +2,7 @@
<html lang="en">
<head>
<title>English Test Post :: Privacynerd&#39;s blog</title>
<title>One Word! :: Privacynerd&#39;s blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -47,7 +47,7 @@
<meta property="og:locale" content="en" />
<meta property="og:type" content="article" />
<meta property="og:title" content="English Test Post">
<meta property="og:title" content="One Word!">
<meta property="og:description" content="Justoneword" />
<meta property="og:url" content="https://blog.privacynerd.de/en/posts/one-word/" />
<meta property="og:site_name" content="Privacynerd&#39;s blog" />
@ -191,9 +191,9 @@
<article class="post">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/en/posts/one-word/">English Test Post</a>
<a href="https://blog.privacynerd.de/en/posts/one-word/">One Word!</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">1 minute to read (1 word)</span>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">1 minutes to read (1 word)</span>
</div>
@ -218,6 +218,13 @@
</div>
<div class="pagination__buttons">
<span class="button previous">
<a href="https://blog.privacynerd.de/en/posts/random-story/">
<span class="button__icon"></span>
<span class="button__text">A random story</span>
</a>
</span>
<span class="button next">
<a href="https://blog.privacynerd.de/en/posts/test-post/">

View File

@ -0,0 +1,299 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>A random story :: Privacynerd&#39;s blog</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Random story by ChatGPT to test out the perfect reading speed value" />
<meta name="keywords" content="" />
<meta name="robots" content="noodp" />
<link rel="canonical" href="https://blog.privacynerd.de/en/posts/random-story/" />
<link rel="stylesheet" href="https://blog.privacynerd.de/styles.css">
<link rel="shortcut icon" href="https://blog.privacynerd.de/favicon.ico">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="" />
<meta name="twitter:creator" content="" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="article" />
<meta property="og:title" content="A random story">
<meta property="og:description" content="Random story by ChatGPT to test out the perfect reading speed value" />
<meta property="og:url" content="https://blog.privacynerd.de/en/posts/random-story/" />
<meta property="og:site_name" content="Privacynerd&#39;s blog" />
<meta property="og:image" content="https://blog.privacynerd.de/favicon.ico">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="627">
<meta property="article:published_time" content="2025-04-08 17:55:25 &#43;0200 CEST" />
</head>
<body class="green">
<div id="banner">
<span>
<a href="https://git.privacynerd.de/git.privacynerd.de/blog.privacynerd.de">Construction site 🚧 | Work in progress</a>
</span>
</div>
<div class="container center headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="/en">
<div class="logo">
Privacynerd&#39;s blog
</div>
</a>
</div>
<ul class="menu menu--mobile">
<li class="menu__trigger">Menu&nbsp;</li>
<li>
<ul class="menu__dropdown">
<li><a href="/en/about">About</a></li>
<li><a href="/en/tags">Tags</a></li>
<li><a href="/en/categories">Categories</a></li>
<hr />
<li>
<a href='/en/posts/random-story/'>English</a>
</li>
<li>
<a href='/de/posts/random-story/'>Deutsch</a>
</li>
</ul>
</li>
</ul>
<ul class="menu menu--desktop menu--language-selector">
<li class="menu__trigger">en&nbsp;</li>
<li>
<ul class="menu__dropdown">
<li><a href='/en/posts/random-story/'>English</a></li>
<li><a href='/de/posts/random-story/'>Deutsch</a></li>
</ul>
</li>
</ul>
</div>
<nav class="navigation-menu">
<ul class="navigation-menu__inner menu--desktop">
<li><a href="/en/about" >About</a></li>
<li><a href="/en/tags" >Tags</a></li>
<li><a href="/en/categories" >Categories</a></li>
</ul>
</nav>
</header>
<div class="content">
<article class="post">
<h1 class="post-title">
<a href="https://blog.privacynerd.de/en/posts/random-story/">A random story</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-08</time><span class="post-reading-time">3 minutes to read (222 words)</span>
</div>
<div class="table-of-contents">
<h2>
Table of Contents
</h2>
<nav id="TableOfContents">
<ul>
<li><a href="#german-prompt">German prompt</a></li>
<li><a href="#answer-translated-to-english">Answer, translated to english</a></li>
</ul>
</nav>
</div>
<div class="post-content"><div>
<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<a href="#german-prompt" class="hanchor" ariaLabel="Anchor">&#8983;</a> </h2>
<p>Tell a story with around 200 words.</p>
<h2 id="answer-translated-to-english">Answer, translated to english<a href="#answer-translated-to-english" class="hanchor" ariaLabel="Anchor">&#8983;</a> </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>
</div></div>
<div class="pagination">
<div class="pagination__title">
<span class="pagination__title-h">Read other posts</span>
<hr />
</div>
<div class="pagination__buttons">
<span class="button next">
<a href="https://blog.privacynerd.de/en/posts/one-word/">
<span class="button__text">One Word!</span>
<span class="button__icon"></span>
</a>
</span>
</div>
</div>
</article>
</div>
<footer class="footer">
<style>
.antidiscovery i { display: none; }
</style>
<div class="footer__inner">
<div class="copyright copyright--user">
<span class="antidiscovery">© 2025 <i>L</i>B<i>P</i>e<i>o</i>n<i>i</i>j<i>n</i>a<i>c</i>m<i>G</i>i<i>N</i>n<i>U</i> <i>S</i>B<i>k</i>u<i>o</i>r<i>K</i>k<i>y</i>h<i>f</i>a<i>H</i>r<i>r</i>d<i>y</i>t</span>
<span style="margin-right: 10px">:: <a href="https://privacynerd.de/impressum?referrer=https%3a%2f%2fblog.privacynerd.de%2fen%2fposts%2frandom-story%2f">Imprint</a></span>
<span>:: <a href="https://github.com/mirus-ua/hugo-theme-re-terminal" target="_blank">Theme</a> by <a href="https://github.com/mirus-ua" target="_blank">Mirus</a> (customized)</span>
</div>
</div>
</footer>
<script type="text/javascript" src="/bundle.min.js"></script>
<script type="text/javascript" src="/js/banner.min.js"></script>
</div>
</body>
</html>

View File

@ -195,7 +195,7 @@
<h1 class="post-title">
<a href="https://blog.privacynerd.de/en/posts/test-post/">English Test Post</a>
</h1>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">2 minutes to read (369 words)</span>
<div class="post-meta"><time class="post-date">2025-04-05</time><span class="post-reading-time">4 minutes to read (369 words)</span>
</div>
@ -251,7 +251,7 @@
<span class="button previous">
<a href="https://blog.privacynerd.de/en/posts/one-word/">
<span class="button__icon"></span>
<span class="button__text">English Test Post</span>
<span class="button__text">One Word!</span>
</a>
</span>

View File

@ -2,21 +2,21 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://blog.privacynerd.de/en/posts/one-word/</loc>
<lastmod>2025-04-05T22:48:12+02:00</lastmod>
<loc>https://blog.privacynerd.de/en/posts/random-story/</loc>
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://blog.privacynerd.de/de/posts/one-word/"
href="https://blog.privacynerd.de/de/posts/random-story/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://blog.privacynerd.de/en/posts/one-word/"
href="https://blog.privacynerd.de/en/posts/random-story/"
/>
</url><url>
<loc>https://blog.privacynerd.de/en/posts/</loc>
<lastmod>2025-04-05T22:48:12+02:00</lastmod>
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
@ -29,7 +29,7 @@
/>
</url><url>
<loc>https://blog.privacynerd.de/en/</loc>
<lastmod>2025-04-05T22:48:12+02:00</lastmod>
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
@ -40,6 +40,19 @@
hreflang="en"
href="https://blog.privacynerd.de/en/"
/>
</url><url>
<loc>https://blog.privacynerd.de/en/posts/one-word/</loc>
<lastmod>2025-04-05T22:48:12+02:00</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
href="https://blog.privacynerd.de/de/posts/one-word/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="https://blog.privacynerd.de/en/posts/one-word/"
/>
</url><url>
<loc>https://blog.privacynerd.de/en/about/</loc>
<lastmod>2025-04-05T20:14:29+02:00</lastmod>

View File

@ -4,14 +4,14 @@
<sitemap>
<loc>https://blog.privacynerd.de/en/sitemap.xml</loc>
<lastmod>2025-04-05T22:48:12+02:00</lastmod>
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
</sitemap>
<sitemap>
<loc>https://blog.privacynerd.de/de/sitemap.xml</loc>
<lastmod>2025-04-05T20:14:29+02:00</lastmod>
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
</sitemap>