Improved tags listing
This commit is contained in:
parent
4df732ccc3
commit
020265718c
@ -3,7 +3,7 @@ title = 'Eine beliebige Geschichte'
|
|||||||
date = 2025-04-08T17:55:25+02:00
|
date = 2025-04-08T17:55:25+02:00
|
||||||
toc = true
|
toc = true
|
||||||
description = "Kleine Geschichte von ChatGPT, um die Lesezeiten einzustellen"
|
description = "Kleine Geschichte von ChatGPT, um die Lesezeiten einzustellen"
|
||||||
tags = ['story']
|
tags = ['story', 'ai']
|
||||||
draft = false
|
draft = false
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ title = 'A random story'
|
|||||||
date = 2025-04-08T17:55:25+02:00
|
date = 2025-04-08T17:55:25+02:00
|
||||||
toc = true
|
toc = true
|
||||||
description = "Random story by ChatGPT to test out the perfect reading speed value"
|
description = "Random story by ChatGPT to test out the perfect reading speed value"
|
||||||
tags = ['story']
|
tags = ['story', 'ai']
|
||||||
draft = false
|
draft = false
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
57
layouts/_default/term.html
Normal file
57
layouts/_default/term.html
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<h1>Posts for: <b style="opacity: 0.5;">#{{ .Title | strings.ToLower }}</b></h1>
|
||||||
|
{{ with .Content }}
|
||||||
|
<div class="index-content">
|
||||||
|
{{ . }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
<div class="posts">
|
||||||
|
{{ range .Paginator.Pages }}
|
||||||
|
<article class="post on-list">
|
||||||
|
<h1 class="post-title">
|
||||||
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
||||||
|
</h1>
|
||||||
|
<div class="post-meta">
|
||||||
|
{{- if .Date -}}
|
||||||
|
<time class="post-date">
|
||||||
|
{{- .Date.Format "2006-01-02" -}}
|
||||||
|
</time>
|
||||||
|
{{- end -}}
|
||||||
|
{{- with .Params.Author -}}
|
||||||
|
<span class="post-author">{{- . -}}</span>
|
||||||
|
{{- end -}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ if .Params.tags }}
|
||||||
|
<span class="post-tags">
|
||||||
|
{{ range .Params.tags }}
|
||||||
|
#<a href="{{ (urls.JoinPath "tags" (urlize .) "/") | absLangURL }}">
|
||||||
|
{{- . -}}
|
||||||
|
</a>
|
||||||
|
{{ end }}
|
||||||
|
</span>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ partial "cover.html" . }}
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
{{ if .Params.showFullContent }}
|
||||||
|
{{ .Content }}
|
||||||
|
{{ else if .Description }}
|
||||||
|
{{ .Description | markdownify }}
|
||||||
|
{{ else }}
|
||||||
|
{{ .Summary }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ if not .Params.showFullContent }}
|
||||||
|
<div>
|
||||||
|
<a class="read-more button" href="{{.RelPermalink}}">{{ $.Site.Params.ReadMore }} →</a>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</article>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ partial "pagination.html" . }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
22
layouts/_default/terms.html
Normal file
22
layouts/_default/terms.html
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<div class="terms">
|
||||||
|
<h1>{{ .Title }}</h1>
|
||||||
|
{{ with .Content }}
|
||||||
|
<div class="index-content">
|
||||||
|
{{ . }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
<ul>
|
||||||
|
{{ $type := .Type }}
|
||||||
|
{{ range $key, $value := .Data.Terms.Alphabetical }}
|
||||||
|
{{ $name := .Name }}
|
||||||
|
{{ $count := .Count }}
|
||||||
|
{{ with $.Site.GetPage (printf "/%s/%s" $type $name) }}
|
||||||
|
<li>
|
||||||
|
<a class="terms-title" href="{{ .Permalink }}">{{ .Name | strings.ToLower }} [{{ $count }}]</a>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
@ -1,246 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="de">
|
|
||||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
|
||||||
|
|
||||||
<title>Category A :: Privacynerd'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="" />
|
|
||||||
<meta name="keywords" content="" />
|
|
||||||
|
|
||||||
<meta name="robots" content="noodp" />
|
|
||||||
|
|
||||||
<link rel="canonical" href="http://10.0.30.49:1313/de/categories/category-a/" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="http://10.0.30.49:1313/styles.css">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="http://10.0.30.49:1313/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="website" />
|
|
||||||
<meta property="og:title" content="Category A">
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:url" content="http://10.0.30.49:1313/de/categories/category-a/" />
|
|
||||||
<meta property="og:site_name" content="Privacynerd's blog" />
|
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:image" content="http://10.0.30.49:1313/favicon.ico">
|
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:image:width" content="1200">
|
|
||||||
<meta property="og:image:height" content="627">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link href="/de/categories/category-a/index.xml" rel="alternate" type="application/rss+xml" title="Privacynerd's blog" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</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's blog
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul class="menu menu--mobile">
|
|
||||||
<li class="menu__trigger">Menü ▾</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/categories/category-a/'>English</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href='/de/categories/category-a/'>Deutsch</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="menu menu--desktop menu--language-selector">
|
|
||||||
|
|
||||||
<li class="menu__trigger">de ▾</li>
|
|
||||||
<li>
|
|
||||||
<ul class="menu__dropdown">
|
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/en/categories/category-a/'>English</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/de/categories/category-a/'>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">
|
|
||||||
|
|
||||||
<h1>Posts for: #Category A</h1>
|
|
||||||
|
|
||||||
<div class="posts">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="pagination">
|
|
||||||
<div class="pagination__buttons">
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</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=http%3a%2f%2f10.0.30.49%3a1313%2fde%2fcategories%2fcategory-a%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>
|
|
@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Category A on Privacynerd's blog</title>
|
|
||||||
<link>http://10.0.30.49:1313/de/categories/category-a/</link>
|
|
||||||
<description>Recent content in Category A on Privacynerd's blog</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>de</language><atom:link href="http://10.0.30.49:1313/de/categories/category-a/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
@ -1,10 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="de">
|
|
||||||
<head>
|
|
||||||
<title>http://10.0.30.49:1313/de/categories/category-a/</title>
|
|
||||||
<link rel="canonical" href="http://10.0.30.49:1313/de/categories/category-a/">
|
|
||||||
<meta name="robots" content="noindex">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="refresh" content="0; url=http://10.0.30.49:1313/de/categories/category-a/">
|
|
||||||
</head>
|
|
||||||
</html>
|
|
@ -1,10 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="de">
|
|
||||||
<head>
|
|
||||||
<title>http://10.0.30.49:1313/de/categories/category-b/</title>
|
|
||||||
<link rel="canonical" href="http://10.0.30.49:1313/de/categories/category-b/">
|
|
||||||
<meta name="robots" content="noindex">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="refresh" content="0; url=http://10.0.30.49:1313/de/categories/category-b/">
|
|
||||||
</head>
|
|
||||||
</html>
|
|
@ -217,6 +217,8 @@
|
|||||||
|
|
||||||
#<a href="https://blog.privacynerd.de/de/tags/story/">story</a>
|
#<a href="https://blog.privacynerd.de/de/tags/story/">story</a>
|
||||||
|
|
||||||
|
#<a href="https://blog.privacynerd.de/de/tags/ai/">ai</a>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
@ -206,6 +206,8 @@
|
|||||||
|
|
||||||
#<a href="https://blog.privacynerd.de/de/tags/story/">story</a>
|
#<a href="https://blog.privacynerd.de/de/tags/story/">story</a>
|
||||||
|
|
||||||
|
#<a href="https://blog.privacynerd.de/de/tags/ai/">ai</a>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
@ -202,6 +202,8 @@
|
|||||||
|
|
||||||
#<a href="https://blog.privacynerd.de/de/tags/story/">story</a>
|
#<a href="https://blog.privacynerd.de/de/tags/story/">story</a>
|
||||||
|
|
||||||
|
#<a href="https://blog.privacynerd.de/de/tags/ai/">ai</a>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,6 +2,19 @@
|
|||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
<url>
|
<url>
|
||||||
|
<loc>https://blog.privacynerd.de/de/tags/ai/</loc>
|
||||||
|
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
|
||||||
|
<xhtml:link
|
||||||
|
rel="alternate"
|
||||||
|
hreflang="en"
|
||||||
|
href="https://blog.privacynerd.de/en/tags/ai/"
|
||||||
|
/>
|
||||||
|
<xhtml:link
|
||||||
|
rel="alternate"
|
||||||
|
hreflang="de"
|
||||||
|
href="https://blog.privacynerd.de/de/tags/ai/"
|
||||||
|
/>
|
||||||
|
</url><url>
|
||||||
<loc>https://blog.privacynerd.de/de/posts/random-story/</loc>
|
<loc>https://blog.privacynerd.de/de/posts/random-story/</loc>
|
||||||
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
|
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
|
||||||
<xhtml:link
|
<xhtml:link
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="de">
|
<html lang="de">
|
||||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
<head>
|
||||||
|
|
||||||
<title>Category B :: Privacynerd's blog</title>
|
<title>Ai :: Privacynerd's blog</title>
|
||||||
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<meta name="robots" content="noodp" />
|
<meta name="robots" content="noodp" />
|
||||||
|
|
||||||
<link rel="canonical" href="http://10.0.30.49:1313/de/categories/category-b/" />
|
<link rel="canonical" href="https://blog.privacynerd.de/de/tags/ai/" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="http://10.0.30.49:1313/styles.css">
|
<link rel="stylesheet" href="https://blog.privacynerd.de/styles.css">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="http://10.0.30.49:1313/favicon.ico">
|
<link rel="shortcut icon" href="https://blog.privacynerd.de/favicon.ico">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -47,13 +47,13 @@
|
|||||||
|
|
||||||
<meta property="og:locale" content="de" />
|
<meta property="og:locale" content="de" />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:title" content="Category B">
|
<meta property="og:title" content="Ai">
|
||||||
<meta property="og:description" content="" />
|
<meta property="og:description" content="" />
|
||||||
<meta property="og:url" content="http://10.0.30.49:1313/de/categories/category-b/" />
|
<meta property="og:url" content="https://blog.privacynerd.de/de/tags/ai/" />
|
||||||
<meta property="og:site_name" content="Privacynerd's blog" />
|
<meta property="og:site_name" content="Privacynerd's blog" />
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:image" content="http://10.0.30.49:1313/favicon.ico">
|
<meta property="og:image" content="https://blog.privacynerd.de/favicon.ico">
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:image:width" content="1200">
|
<meta property="og:image:width" content="1200">
|
||||||
@ -63,7 +63,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link href="/de/categories/category-b/index.xml" rel="alternate" type="application/rss+xml" title="Privacynerd's blog" />
|
<link href="/de/tags/ai/index.xml" rel="alternate" type="application/rss+xml" title="Privacynerd's blog" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -128,11 +128,11 @@
|
|||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href='/en/categories/category-b/'>English</a>
|
<a href='/en/tags/ai/'>English</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href='/de/categories/category-b/'>Deutsch</a>
|
<a href='/de/tags/ai/'>Deutsch</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
||||||
@ -149,10 +149,10 @@
|
|||||||
<ul class="menu__dropdown">
|
<ul class="menu__dropdown">
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/en/categories/category-b/'>English</a></li>
|
<li><a href='/en/tags/ai/'>English</a></li>
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/de/categories/category-b/'>Deutsch</a></li>
|
<li><a href='/de/tags/ai/'>Deutsch</a></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
@ -189,20 +189,22 @@
|
|||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
||||||
<h1>Posts for: #Category B</h1>
|
<h1>Posts for: <b style="opacity: 0.5;">#ai</b></h1>
|
||||||
|
|
||||||
<div class="posts">
|
<div class="posts">
|
||||||
|
|
||||||
<article class="post on-list">
|
<article class="post on-list">
|
||||||
<h1 class="post-title">
|
<h1 class="post-title">
|
||||||
<a href="http://10.0.30.49:1313/de/posts/random-story/">Eine beliebige Geschichte</a>
|
<a href="https://blog.privacynerd.de/de/posts/random-story/">Eine beliebige Geschichte</a>
|
||||||
</h1>
|
</h1>
|
||||||
<div class="post-meta"><time class="post-date">2025-04-08</time></div>
|
<div class="post-meta"><time class="post-date">2025-04-08</time></div>
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags">
|
<span class="post-tags">
|
||||||
|
|
||||||
#<a href="http://10.0.30.49:1313/de/tags/story/">story</a>
|
#<a href="https://blog.privacynerd.de/de/tags/story/">story</a>
|
||||||
|
|
||||||
|
#<a href="https://blog.privacynerd.de/de/tags/ai/">ai</a>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
@ -246,7 +248,7 @@
|
|||||||
<div class="copyright copyright--user">
|
<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 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=http%3a%2f%2f10.0.30.49%3a1313%2fde%2fcategories%2fcategory-b%2f">Impressum</a></span>
|
<span style="margin-right: 10px">:: <a href="https://privacynerd.de/impressum?referrer=https%3a%2f%2fblog.privacynerd.de%2fde%2ftags%2fai%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>
|
<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>
|
||||||
</div>
|
</div>
|
@ -1,18 +1,18 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Category B on Privacynerd's blog</title>
|
<title>Ai on Privacynerd's blog</title>
|
||||||
<link>http://10.0.30.49:1313/de/categories/category-b/</link>
|
<link>https://blog.privacynerd.de/de/tags/ai/</link>
|
||||||
<description>Recent content in Category B on Privacynerd's blog</description>
|
<description>Recent content in Ai on Privacynerd's blog</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>de</language>
|
<language>de</language>
|
||||||
<lastBuildDate>Tue, 08 Apr 2025 17:55:25 +0200</lastBuildDate><atom:link href="http://10.0.30.49:1313/de/categories/category-b/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/tags/ai/index.xml" rel="self" type="application/rss+xml" />
|
||||||
<item>
|
<item>
|
||||||
<title>Eine beliebige Geschichte</title>
|
<title>Eine beliebige Geschichte</title>
|
||||||
<link>http://10.0.30.49:1313/de/posts/random-story/</link>
|
<link>https://blog.privacynerd.de/de/posts/random-story/</link>
|
||||||
<pubDate>Tue, 08 Apr 2025 17:55:25 +0200</pubDate>
|
<pubDate>Tue, 08 Apr 2025 17:55:25 +0200</pubDate>
|
||||||
|
|
||||||
<guid>http://10.0.30.49:1313/de/posts/random-story/</guid>
|
<guid>https://blog.privacynerd.de/de/posts/random-story/</guid>
|
||||||
<description><p>Dies ist eine beliebige Story, die von ChatGPT zum Testen und Einstellen der Lesezeit auf diesem Blog generiert wurde.</p>
|
<description><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>
|
<h2 id="prompt">Prompt</h2>
|
||||||
<p>Erzähle eine Geschichte mit ca. 200 Wörtern.</p>
|
<p>Erzähle eine Geschichte mit ca. 200 Wörtern.</p>
|
10
public/de/tags/ai/page/1/index.html
Normal file
10
public/de/tags/ai/page/1/index.html
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de">
|
||||||
|
<head>
|
||||||
|
<title>https://blog.privacynerd.de/de/tags/ai/</title>
|
||||||
|
<link rel="canonical" href="https://blog.privacynerd.de/de/tags/ai/">
|
||||||
|
<meta name="robots" content="noindex">
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="refresh" content="0; url=https://blog.privacynerd.de/de/tags/ai/">
|
||||||
|
</head>
|
||||||
|
</html>
|
@ -1,246 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="de">
|
|
||||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
|
||||||
|
|
||||||
<title>Geschichte :: Privacynerd'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="" />
|
|
||||||
<meta name="keywords" content="" />
|
|
||||||
|
|
||||||
<meta name="robots" content="noodp" />
|
|
||||||
|
|
||||||
<link rel="canonical" href="http://10.0.30.49:1313/de/tags/geschichte/" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="http://10.0.30.49:1313/styles.css">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="http://10.0.30.49:1313/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="website" />
|
|
||||||
<meta property="og:title" content="Geschichte">
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:url" content="http://10.0.30.49:1313/de/tags/geschichte/" />
|
|
||||||
<meta property="og:site_name" content="Privacynerd's blog" />
|
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:image" content="http://10.0.30.49:1313/favicon.ico">
|
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:image:width" content="1200">
|
|
||||||
<meta property="og:image:height" content="627">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link href="/de/tags/geschichte/index.xml" rel="alternate" type="application/rss+xml" title="Privacynerd's blog" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</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's blog
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul class="menu menu--mobile">
|
|
||||||
<li class="menu__trigger">Menü ▾</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/tags/geschichte/'>English</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href='/de/tags/geschichte/'>Deutsch</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="menu menu--desktop menu--language-selector">
|
|
||||||
|
|
||||||
<li class="menu__trigger">de ▾</li>
|
|
||||||
<li>
|
|
||||||
<ul class="menu__dropdown">
|
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/en/tags/geschichte/'>English</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/de/tags/geschichte/'>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">
|
|
||||||
|
|
||||||
<h1>Posts for: #Geschichte</h1>
|
|
||||||
|
|
||||||
<div class="posts">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="pagination">
|
|
||||||
<div class="pagination__buttons">
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</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=http%3a%2f%2f10.0.30.49%3a1313%2fde%2ftags%2fgeschichte%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>
|
|
@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Geschichte on Privacynerd's blog</title>
|
|
||||||
<link>http://10.0.30.49:1313/de/tags/geschichte/</link>
|
|
||||||
<description>Recent content in Geschichte on Privacynerd's blog</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>de</language><atom:link href="http://10.0.30.49:1313/de/tags/geschichte/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
@ -1,10 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="de">
|
|
||||||
<head>
|
|
||||||
<title>http://10.0.30.49:1313/de/tags/geschichte/</title>
|
|
||||||
<link rel="canonical" href="http://10.0.30.49:1313/de/tags/geschichte/">
|
|
||||||
<meta name="robots" content="noindex">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="refresh" content="0; url=http://10.0.30.49:1313/de/tags/geschichte/">
|
|
||||||
</head>
|
|
||||||
</html>
|
|
@ -198,6 +198,14 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a class="terms-title" href="https://blog.privacynerd.de/de/tags/ai/">ai [1]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a class="terms-title" href="https://blog.privacynerd.de/de/tags/story/">story [1]</a>
|
<a class="terms-title" href="https://blog.privacynerd.de/de/tags/story/">story [1]</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -7,6 +7,16 @@
|
|||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>de</language>
|
<language>de</language>
|
||||||
<lastBuildDate>Tue, 08 Apr 2025 17:55:25 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/de/tags/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/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Ai</title>
|
||||||
|
<link>https://blog.privacynerd.de/de/tags/ai/</link>
|
||||||
|
<pubDate>Tue, 08 Apr 2025 17:55:25 +0200</pubDate>
|
||||||
|
|
||||||
|
<guid>https://blog.privacynerd.de/de/tags/ai/</guid>
|
||||||
|
<description></description>
|
||||||
|
<content></content>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Story</title>
|
<title>Story</title>
|
||||||
<link>https://blog.privacynerd.de/de/tags/story/</link>
|
<link>https://blog.privacynerd.de/de/tags/story/</link>
|
||||||
|
@ -189,7 +189,7 @@
|
|||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
||||||
<h1>Posts for: #Story</h1>
|
<h1>Posts for: <b style="opacity: 0.5;">#story</b></h1>
|
||||||
|
|
||||||
<div class="posts">
|
<div class="posts">
|
||||||
|
|
||||||
@ -204,6 +204,8 @@
|
|||||||
|
|
||||||
#<a href="https://blog.privacynerd.de/de/tags/story/">story</a>
|
#<a href="https://blog.privacynerd.de/de/tags/story/">story</a>
|
||||||
|
|
||||||
|
#<a href="https://blog.privacynerd.de/de/tags/ai/">ai</a>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,277 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
|
|
||||||
<title>Category A :: Privacynerd'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="" />
|
|
||||||
<meta name="keywords" content="" />
|
|
||||||
|
|
||||||
<meta name="robots" content="noodp" />
|
|
||||||
|
|
||||||
<link rel="canonical" href="https://blog.privacynerd.de/en/categories/category-a/" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<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="website" />
|
|
||||||
<meta property="og:title" content="Category A">
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:url" content="https://blog.privacynerd.de/en/categories/category-a/" />
|
|
||||||
<meta property="og:site_name" content="Privacynerd'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">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link href="/en/categories/category-a/index.xml" rel="alternate" type="application/rss+xml" title="Privacynerd's blog" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</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's blog
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul class="menu menu--mobile">
|
|
||||||
<li class="menu__trigger">Menu ▾</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/categories/category-a/'>English</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href='/de/categories/category-a/'>Deutsch</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="menu menu--desktop menu--language-selector">
|
|
||||||
|
|
||||||
<li class="menu__trigger">en ▾</li>
|
|
||||||
<li>
|
|
||||||
<ul class="menu__dropdown">
|
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/en/categories/category-a/'>English</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/de/categories/category-a/'>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">
|
|
||||||
|
|
||||||
<h1>Posts for: #Category A</h1>
|
|
||||||
|
|
||||||
<div class="posts">
|
|
||||||
|
|
||||||
<article class="post on-list">
|
|
||||||
<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></div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags">
|
|
||||||
|
|
||||||
#<a href="https://blog.privacynerd.de/en/tags/story/">story</a>
|
|
||||||
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<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>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="pagination">
|
|
||||||
<div class="pagination__buttons">
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</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%2fcategories%2fcategory-a%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>
|
|
@ -1,36 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Category A on Privacynerd's blog</title>
|
|
||||||
<link>https://blog.privacynerd.de/en/categories/category-a/</link>
|
|
||||||
<description>Recent content in Category A on Privacynerd's blog</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>en</language>
|
|
||||||
<lastBuildDate>Tue, 08 Apr 2025 17:55:25 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/en/categories/category-a/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
<item>
|
|
||||||
<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><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></description>
|
|
||||||
<content><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>
|
|
||||||
</content>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
@ -1,10 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>https://blog.privacynerd.de/en/categories/category-a/</title>
|
|
||||||
<link rel="canonical" href="https://blog.privacynerd.de/en/categories/category-a/">
|
|
||||||
<meta name="robots" content="noindex">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://blog.privacynerd.de/en/categories/category-a/">
|
|
||||||
</head>
|
|
||||||
</html>
|
|
@ -1,10 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>https://blog.privacynerd.de/en/categories/category-b/</title>
|
|
||||||
<link rel="canonical" href="https://blog.privacynerd.de/en/categories/category-b/">
|
|
||||||
<meta name="robots" content="noindex">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="refresh" content="0; url=https://blog.privacynerd.de/en/categories/category-b/">
|
|
||||||
</head>
|
|
||||||
</html>
|
|
@ -217,6 +217,8 @@
|
|||||||
|
|
||||||
#<a href="https://blog.privacynerd.de/en/tags/story/">story</a>
|
#<a href="https://blog.privacynerd.de/en/tags/story/">story</a>
|
||||||
|
|
||||||
|
#<a href="https://blog.privacynerd.de/en/tags/ai/">ai</a>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
@ -206,6 +206,8 @@
|
|||||||
|
|
||||||
#<a href="https://blog.privacynerd.de/en/tags/story/">story</a>
|
#<a href="https://blog.privacynerd.de/en/tags/story/">story</a>
|
||||||
|
|
||||||
|
#<a href="https://blog.privacynerd.de/en/tags/ai/">ai</a>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
@ -202,6 +202,8 @@
|
|||||||
|
|
||||||
#<a href="https://blog.privacynerd.de/en/tags/story/">story</a>
|
#<a href="https://blog.privacynerd.de/en/tags/story/">story</a>
|
||||||
|
|
||||||
|
#<a href="https://blog.privacynerd.de/en/tags/ai/">ai</a>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,6 +14,19 @@
|
|||||||
hreflang="en"
|
hreflang="en"
|
||||||
href="https://blog.privacynerd.de/en/posts/random-story/"
|
href="https://blog.privacynerd.de/en/posts/random-story/"
|
||||||
/>
|
/>
|
||||||
|
</url><url>
|
||||||
|
<loc>https://blog.privacynerd.de/en/tags/ai/</loc>
|
||||||
|
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
|
||||||
|
<xhtml:link
|
||||||
|
rel="alternate"
|
||||||
|
hreflang="de"
|
||||||
|
href="https://blog.privacynerd.de/de/tags/ai/"
|
||||||
|
/>
|
||||||
|
<xhtml:link
|
||||||
|
rel="alternate"
|
||||||
|
hreflang="en"
|
||||||
|
href="https://blog.privacynerd.de/en/tags/ai/"
|
||||||
|
/>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>https://blog.privacynerd.de/en/posts/</loc>
|
<loc>https://blog.privacynerd.de/en/posts/</loc>
|
||||||
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
|
<lastmod>2025-04-08T17:55:25+02:00</lastmod>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
|
|
||||||
<title>Category B :: Privacynerd's blog</title>
|
<title>Ai :: Privacynerd's blog</title>
|
||||||
|
|
||||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<meta name="robots" content="noodp" />
|
<meta name="robots" content="noodp" />
|
||||||
|
|
||||||
<link rel="canonical" href="https://blog.privacynerd.de/en/categories/category-b/" />
|
<link rel="canonical" href="https://blog.privacynerd.de/en/tags/ai/" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -47,9 +47,9 @@
|
|||||||
|
|
||||||
<meta property="og:locale" content="en" />
|
<meta property="og:locale" content="en" />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:title" content="Category B">
|
<meta property="og:title" content="Ai">
|
||||||
<meta property="og:description" content="" />
|
<meta property="og:description" content="" />
|
||||||
<meta property="og:url" content="https://blog.privacynerd.de/en/categories/category-b/" />
|
<meta property="og:url" content="https://blog.privacynerd.de/en/tags/ai/" />
|
||||||
<meta property="og:site_name" content="Privacynerd's blog" />
|
<meta property="og:site_name" content="Privacynerd's blog" />
|
||||||
|
|
||||||
|
|
||||||
@ -63,7 +63,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link href="/en/categories/category-b/index.xml" rel="alternate" type="application/rss+xml" title="Privacynerd's blog" />
|
<link href="/en/tags/ai/index.xml" rel="alternate" type="application/rss+xml" title="Privacynerd's blog" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -128,11 +128,11 @@
|
|||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href='/en/categories/category-b/'>English</a>
|
<a href='/en/tags/ai/'>English</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href='/de/categories/category-b/'>Deutsch</a>
|
<a href='/de/tags/ai/'>Deutsch</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
|
||||||
@ -149,10 +149,10 @@
|
|||||||
<ul class="menu__dropdown">
|
<ul class="menu__dropdown">
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/en/categories/category-b/'>English</a></li>
|
<li><a href='/en/tags/ai/'>English</a></li>
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/de/categories/category-b/'>Deutsch</a></li>
|
<li><a href='/de/tags/ai/'>Deutsch</a></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
@ -189,7 +189,7 @@
|
|||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
||||||
<h1>Posts for: #Category B</h1>
|
<h1>Posts for: <b style="opacity: 0.5;">#ai</b></h1>
|
||||||
|
|
||||||
<div class="posts">
|
<div class="posts">
|
||||||
|
|
||||||
@ -204,6 +204,8 @@
|
|||||||
|
|
||||||
#<a href="https://blog.privacynerd.de/en/tags/story/">story</a>
|
#<a href="https://blog.privacynerd.de/en/tags/story/">story</a>
|
||||||
|
|
||||||
|
#<a href="https://blog.privacynerd.de/en/tags/ai/">ai</a>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
@ -246,7 +248,7 @@
|
|||||||
<div class="copyright copyright--user">
|
<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 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%2fcategories%2fcategory-b%2f">Imprint</a></span>
|
<span style="margin-right: 10px">:: <a href="https://privacynerd.de/impressum?referrer=https%3a%2f%2fblog.privacynerd.de%2fen%2ftags%2fai%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>
|
<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>
|
||||||
</div>
|
</div>
|
@ -1,12 +1,12 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Category B on Privacynerd's blog</title>
|
<title>Ai on Privacynerd's blog</title>
|
||||||
<link>https://blog.privacynerd.de/en/categories/category-b/</link>
|
<link>https://blog.privacynerd.de/en/tags/ai/</link>
|
||||||
<description>Recent content in Category B on Privacynerd's blog</description>
|
<description>Recent content in Ai on Privacynerd's blog</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en</language>
|
<language>en</language>
|
||||||
<lastBuildDate>Tue, 08 Apr 2025 17:55:25 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/en/categories/category-b/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/tags/ai/index.xml" rel="self" type="application/rss+xml" />
|
||||||
<item>
|
<item>
|
||||||
<title>A random story</title>
|
<title>A random story</title>
|
||||||
<link>https://blog.privacynerd.de/en/posts/random-story/</link>
|
<link>https://blog.privacynerd.de/en/posts/random-story/</link>
|
10
public/en/tags/ai/page/1/index.html
Normal file
10
public/en/tags/ai/page/1/index.html
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>https://blog.privacynerd.de/en/tags/ai/</title>
|
||||||
|
<link rel="canonical" href="https://blog.privacynerd.de/en/tags/ai/">
|
||||||
|
<meta name="robots" content="noindex">
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="refresh" content="0; url=https://blog.privacynerd.de/en/tags/ai/">
|
||||||
|
</head>
|
||||||
|
</html>
|
@ -1,277 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
|
||||||
|
|
||||||
<title>Geschichte :: Privacynerd'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="" />
|
|
||||||
<meta name="keywords" content="" />
|
|
||||||
|
|
||||||
<meta name="robots" content="noodp" />
|
|
||||||
|
|
||||||
<link rel="canonical" href="http://10.0.30.49:1313/en/tags/geschichte/" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="http://10.0.30.49:1313/styles.css">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="shortcut icon" href="http://10.0.30.49:1313/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="website" />
|
|
||||||
<meta property="og:title" content="Geschichte">
|
|
||||||
<meta property="og:description" content="" />
|
|
||||||
<meta property="og:url" content="http://10.0.30.49:1313/en/tags/geschichte/" />
|
|
||||||
<meta property="og:site_name" content="Privacynerd's blog" />
|
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:image" content="http://10.0.30.49:1313/favicon.ico">
|
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:image:width" content="1200">
|
|
||||||
<meta property="og:image:height" content="627">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link href="/en/tags/geschichte/index.xml" rel="alternate" type="application/rss+xml" title="Privacynerd's blog" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</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's blog
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul class="menu menu--mobile">
|
|
||||||
<li class="menu__trigger">Menu ▾</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/tags/geschichte/'>English</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href='/de/tags/geschichte/'>Deutsch</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="menu menu--desktop menu--language-selector">
|
|
||||||
|
|
||||||
<li class="menu__trigger">en ▾</li>
|
|
||||||
<li>
|
|
||||||
<ul class="menu__dropdown">
|
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/en/tags/geschichte/'>English</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
<li><a href='/de/tags/geschichte/'>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">
|
|
||||||
|
|
||||||
<h1>Posts for: #Geschichte</h1>
|
|
||||||
|
|
||||||
<div class="posts">
|
|
||||||
|
|
||||||
<article class="post on-list">
|
|
||||||
<h1 class="post-title">
|
|
||||||
<a href="http://10.0.30.49:1313/en/posts/random-story/">A random story</a>
|
|
||||||
</h1>
|
|
||||||
<div class="post-meta"><time class="post-date">2025-04-08</time></div>
|
|
||||||
|
|
||||||
|
|
||||||
<span class="post-tags">
|
|
||||||
|
|
||||||
#<a href="http://10.0.30.49:1313/en/tags/geschichte/">geschichte</a>
|
|
||||||
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<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>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="pagination">
|
|
||||||
<div class="pagination__buttons">
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</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=http%3a%2f%2f10.0.30.49%3a1313%2fen%2ftags%2fgeschichte%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>
|
|
@ -1,36 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>Geschichte on Privacynerd's blog</title>
|
|
||||||
<link>http://10.0.30.49:1313/en/tags/geschichte/</link>
|
|
||||||
<description>Recent content in Geschichte on Privacynerd's blog</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>en</language>
|
|
||||||
<lastBuildDate>Tue, 08 Apr 2025 17:55:25 +0200</lastBuildDate><atom:link href="http://10.0.30.49:1313/en/tags/geschichte/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
<item>
|
|
||||||
<title>A random story</title>
|
|
||||||
<link>http://10.0.30.49:1313/en/posts/random-story/</link>
|
|
||||||
<pubDate>Tue, 08 Apr 2025 17:55:25 +0200</pubDate>
|
|
||||||
|
|
||||||
<guid>http://10.0.30.49:1313/en/posts/random-story/</guid>
|
|
||||||
<description><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></description>
|
|
||||||
<content><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>
|
|
||||||
</content>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
@ -1,10 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>http://10.0.30.49:1313/en/tags/geschichte/</title>
|
|
||||||
<link rel="canonical" href="http://10.0.30.49:1313/en/tags/geschichte/">
|
|
||||||
<meta name="robots" content="noindex">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="refresh" content="0; url=http://10.0.30.49:1313/en/tags/geschichte/">
|
|
||||||
</head>
|
|
||||||
</html>
|
|
@ -198,6 +198,14 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a class="terms-title" href="https://blog.privacynerd.de/en/tags/ai/">ai [1]</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a class="terms-title" href="https://blog.privacynerd.de/en/tags/story/">story [1]</a>
|
<a class="terms-title" href="https://blog.privacynerd.de/en/tags/story/">story [1]</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -7,6 +7,16 @@
|
|||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en</language>
|
<language>en</language>
|
||||||
<lastBuildDate>Tue, 08 Apr 2025 17:55:25 +0200</lastBuildDate><atom:link href="https://blog.privacynerd.de/en/tags/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/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
<item>
|
||||||
|
<title>Ai</title>
|
||||||
|
<link>https://blog.privacynerd.de/en/tags/ai/</link>
|
||||||
|
<pubDate>Tue, 08 Apr 2025 17:55:25 +0200</pubDate>
|
||||||
|
|
||||||
|
<guid>https://blog.privacynerd.de/en/tags/ai/</guid>
|
||||||
|
<description></description>
|
||||||
|
<content></content>
|
||||||
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Story</title>
|
<title>Story</title>
|
||||||
<link>https://blog.privacynerd.de/en/tags/story/</link>
|
<link>https://blog.privacynerd.de/en/tags/story/</link>
|
||||||
|
@ -189,7 +189,7 @@
|
|||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
||||||
<h1>Posts for: #Story</h1>
|
<h1>Posts for: <b style="opacity: 0.5;">#story</b></h1>
|
||||||
|
|
||||||
<div class="posts">
|
<div class="posts">
|
||||||
|
|
||||||
@ -204,6 +204,8 @@
|
|||||||
|
|
||||||
#<a href="https://blog.privacynerd.de/en/tags/story/">story</a>
|
#<a href="https://blog.privacynerd.de/en/tags/story/">story</a>
|
||||||
|
|
||||||
|
#<a href="https://blog.privacynerd.de/en/tags/ai/">ai</a>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user