cleanup
Some checks are pending
Build and Push Docker Container / build-and-push (push) Waiting to run

This commit is contained in:
2025-03-15 01:01:27 +01:00
parent b2d3f38bee
commit 699d2f9bcf
21 changed files with 245 additions and 565 deletions

View File

@@ -1,14 +1,3 @@
main > header > h1 {
border-bottom: 6px solid var(--darkMaincolor);
}
body {
color: white;
background-color: #202124;
}
::-moz-selection {
background: blue;
color: #fff;
@@ -21,62 +10,18 @@ body {
text-shadow: none;
}
main > header > h1 {
border-bottom: 6px solid var(--darkMaincolor);
}
body {
color: white;
background-color: #202124;
}
hr {
border-top: 3px dotted blue;
}
code {
background-color: lightblue;
color: black;
text-decoration: bold;
padding: 0.1em 0.2em;
}
pre {
background-color: #272822;
line-height: 1.4;
overflow-x: auto;
padding: 1em;
}
blockquote {
border-color: blue;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #ddd;
}
h1::before {
color: var(--darkMaincolor);
content: "# ";
}
h2::before {
color: var(--darkMaincolor);
content: "## ";
}
h3::before {
color: var(--darkMaincolor);
content: "### ";
}
h4::before {
color: var(--darkMaincolor);
content: "#### ";
}
h5::before {
color: var(--darkMaincolor);
content: "##### ";
}
h6::before {
color: var(--darkMaincolor);
content: "###### ";
}
.toc {
background-color: #272822;
color: white;
}
a {
border-bottom: 3px solid var(--darkMaincolor);
@@ -87,84 +32,15 @@ a:hover {
color: black;
}
.site-description a {
h1,
h2,
h3,
h4,
h5,
h6 {
color: #ddd;
}
.site-description a:hover {
color: black;
}
.tags a {
border-bottom: 3px solid var(--darkMaincolor);
}
.tags a:hover {
background-color: var(--darkMaincolor);
color: black;
}
.site-title a {
color: white;
text-decoration: none !important;
}
.header nav,
.footer {
border-color: #333;
}
.highlight {
background-color: #333;
}
.soc:hover {
color: black;
}
.draft-label {
color: var(--darkMaincolor);
background-color: blue;
}
.highlight pre code[class=language-javaScript]::before,
.highlight pre code[class="language-js"]::before {
content: "js";
background: #f7df1e;
color: black;
}
.highlight pre code[class*='language-yml']::before,
.highlight pre code[class*='language-yaml']::before {
content: 'yaml';
background: #f71e6a;
color: white;
}
.highlight pre code[class*='language-shell']::before,
.highlight pre code[class*='language-bash']::before,
.highlight pre code[class*='language-sh']::before {
content: 'shell';
background: green;
color:white
}
.highlight pre code[class*='language-json']::before{
content: 'json';
background: dodgerblue;
color: #000000
}
.highlight pre code[class*='language-python']::before,
.highlight pre code[class*='language-py']::before {
content: 'py';
background: blue;
color: yellow ;
}
.highlight pre code[class*='language-css']::before{
content: 'css';
background: cyan;
color: black ;
}
.highlight pre code[class*='language-go']::before{
content: 'Go';
background: cyan;
color: royalblue ;
}
.highlight pre code[class*='language-md']::before,
.highlight pre code[class*='language-md']::before{
content: 'Markdown';
background: royalblue;
color: whitesmoke ;
}

View File

@@ -1,4 +1,121 @@
/* table */
:root {
--maincolor: red;
--bordercl: rebeccapurple;
--callouctcolor: dodgerblue;
--hovercolor: navy;
--darkMaincolor: #50fa7b;
}
::selection {
background: var(--maincolor);
color: #fff;
}
html {
color: #232333;
font-family: 'Fira Sans', sans-serif;
font-size: 15px;
line-height: 1.6em;
}
body {
display: block;
margin: 8px;
}
main {
max-width: 800px ;
margin: auto ;
}
hr {
border: 0;
border-top: 3px dotted var(--bordercl);
margin: 1em 0;
}
time {
color: grey;
}
/* --- header --- */
header {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 1em 0;
line-height: 2.5em;
}
header .main {
font-size: 1.5rem;
}
/* --- footer --- */
footer {
font-family: 'Roboto Mono', monospace;
border-top: 0.2rem dotted var(--bordercl);
padding: 2rem 0rem;
margin-top: 10rem;
text-align: center;
}
/* --- typography --- */
h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto Mono', monospace;
font-size: 1.2rem;
margin-top: 2em;
}
h1 .title {
margin-bottom: 0;
}
main > header > h1 {
font-size: 1.6rem;
border-bottom: 6px solid var(--maincolor);
}
p {
line-height: 1.5;
}
a {
border-bottom: 3px solid var(--maincolor);
color: inherit;
text-decoration: none;
}
a:hover {
background-color: var(--hovercolor);
color: #fff;
}
/* --- enumerations --- */
ul {
list-style: none;
padding-left: 2ch;
}
ul li {
text-indent: -2ch;
}
ul > li::before {
content: '- ';
font-weight: bold;
}
/* --- tables --- */
table {
border-collapse: collapse;
}
@@ -15,186 +132,61 @@ table td {
font-size: small;
}
/* footer */
footer {
border-top: 0.2rem dotted var(--bordercl);
padding: 2rem 0rem;
margin-top: 10rem;
text-align: center;
}
/* Page Headings */
main > header > h1 {
font-size: 1.6rem;
border-bottom: 6px solid var(--maincolor);
}
main > header > h1::before{
content: "";
}
main {
max-width: 800px ;
margin: auto ;
}
/* --- images --- */
img {
max-width: 100% ;
border: 3px solid #ececec;
width: 100%;
height: 30vh;
object-fit: cover;
}
/* For TAGLIST.HTML */
.taglist {
text-align: center ;
clear: both ;
}
/* For NEXTPREV.HTML */
/* --- for NEXTPREV.HTML --- */
#nextprev {
/* The container for both the previous and next articles. */
}
#prevart {
float: left ;
text-align: left ;
float: left;
text-align: left;
}
#nextart {
float: right ;
text-align: right ;
float: right;
text-align: right;
}
#nextart,#prevart {
max-width: 33% ;
max-width: 33%;
}
/* Markdown */
:root{
--maincolor: red;
--bordercl:rebeccapurple;
--callouctcolor:dodgerblue;
--hovercolor:navy;
--darkMaincolor: #50fa7b;
/* --- tags --- */
.taglist {
text-align: center;
margin-block-start: 3em;
}
html {
color: #232333;
font-family: 'Roboto Mono', monospace;
font-size: 15px;
line-height: 1.6em;
.tag::before {
content: "🏷 ";
}
body{
display: block;
margin: 8px;
/* --- other classes --- */
.no-before::before {
content: '';
}
* {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
.no-underline {
border-bottom: none;
}
::selection {
background: var(--maincolor);
color: #fff;
}
p {
font-family: 'Fira Sans', sans-serif;
line-height: 1.5;
}
hr {
border: 0;
border-top: 3px dotted var(--bordercl);
margin: 1em 0;
}
blockquote {
border-left: 3px solid var(--bordercl);
color: #737373;
margin: 0;
padding-left: 1em;
}
a {
border-bottom: 3px solid var(--maincolor);
color: inherit;
text-decoration: none;
}
a:hover {
background-color: var(--hovercolor);
color: #fff;
}
ul {
list-style: none;
padding-left: 2ch;
}
ul li {
text-indent: -2ch;
}
ul > li::before {
content: '* ';
font-weight: bold;
}
/* Images */
img {
border: 3px solid #ececec;
max-width: 100%;
}
figure {
box-sizing: border-box;
display: inline-block;
margin: 0;
max-width: 100%;
}
figure img {
max-height: 500px;
}
@media screen and (min-width: 600px) {
figure {
padding: 0 40px;
}
}
figure h4 {
font-size: 1rem;
margin: 0;
article .title {
margin-bottom: 1em;
}
figure h4::before {
content: '↳ ';
}
/* Code blocks */
code {
background-color: #f1f1f1;
padding: .1em .2em;
}
pre {
background-color: #ececec;
line-height: 1.4;
overflow-x: auto;
padding: 1em;
}
.highlight pre ::selection {
background: rgba(255, 255, 255, 0.2);
color: inherit;
}
pre code {
background-color: transparent;
color: inherit;
font-size: 100%;
padding: 0;
}
/* Containers */
.content {
margin-bottom: 4em;
margin-left: auto;
@@ -204,32 +196,6 @@ pre code {
word-wrap: break-word;
}
/* Header */
header {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 1em 0;
line-height: 2.5em;
}
header .main {
font-size: 1.5rem;
}
h1, h2, h3, h4, h5, h6 {
font-size: 1.2rem;
margin-top: 2em;
}
/*
h1::before { color: var(--maincolor); content: '# '; }
h2::before { color: var(--maincolor); content: '## '; }
h3::before { color: var(--maincolor); content: '### '; }
h4::before { color: var(--maincolor); content: '#### '; }
h5::before { color: var(--maincolor); content: '##### '; }
h6::before { color: var(--maincolor); content: '###### '; }
*/
.meta {
color: #999;
letter-spacing: -0.5px;
@@ -244,136 +210,8 @@ h6::before { color: var(--maincolor); content: '###### '; }
display: inline-block;
}
/* Common */
.title h1 {
margin-bottom: 0;
}
time {
color: grey;
}
/* Posts */
article .title {
margin-bottom: 1em;
}
/* Callout */
.callout {
background-color: var(--callouctcolor);
color: #fff;
padding: 1em;
}
.callout p {
font-family: 'IBM Plex Mono', monospace;
margin: 0;
}
.callout a {
border-bottom: 3px solid #fff;
}
.callout a:hover {
background-color: #fff;
color: var(--callouctcolor);
}
.site-description {
display: flex;
justify-content: space-between;
}
.tags li::before{
content: "🏷 ";
}
.tags a{
border-bottom: 3px solid var(--maincolor);
}
.tags a:hover{
color:white;
background-color: var(--hovercolor);
}
svg{
max-height: 15px;
}
.soc:hover{
color: white;
}
.draft-label{
color: var(--bordercl);
text-decoration: none;
padding: 2px 4px;
border-radius: 4px;
margin-left: 6px;
background-color: #f9f2f4;
}
.highlight {
position: relative;
-webkit-overflow-scrolling: touch;
}
.highlight pre code[class*="language-"] {
-webkit-overflow-scrolling: touch;
}
.highlight pre code[class*="language-"]::before {
background: black;
border-radius: 0 0 0.25rem 0.25rem;
color: white;
font-size: 12px;
letter-spacing: 0.025rem;
padding: 0.1rem 0.5rem;
position: absolute;
right: 1rem;
text-align: right;
text-transform: uppercase;
top: 0;
}
.highlight pre code[class=language-javaScript]::before,
.highlight pre code[class="language-js"]::before {
content: "js";
background: #f7df1e;
color: black;
}
.highlight pre code[class*='language-yml']::before,
.highlight pre code[class*='language-yaml']::before {
content: 'yaml';
background: #f71e6a;
color: white;
}
.highlight pre code[class*='language-shell']::before,
.highlight pre code[class*='language-bash']::before,
.highlight pre code[class*='language-sh']::before {
content: 'shell';
background: green;
color:white
}
.highlight pre code[class*='language-json']::before{
content: 'json';
background: dodgerblue;
color: #000000
}
.highlight pre code[class*='language-python']::before,
.highlight pre code[class*='language-py']::before {
content: 'py';
background: blue;
color: yellow ;
}
.highlight pre code[class*='language-css']::before{
content: 'css';
background: cyan;
color: black ;
}
.highlight pre code[class*='language-go']::before{
content: 'Go';
background: cyan;
color: royalblue ;
}
.highlight pre code[class*='language-md']::before,
.highlight pre code[class*='language-md']::before{
content: 'Markdown';
background: royalblue;
color: whitesmoke ;
display: flex;
justify-content: space-between;
}

View File

@@ -1,5 +1,5 @@
---
title: Apfeltarte
title: " 🍎 Apfeltarte"
date: 2024-10-01T16:01:46Z
draft: false
tags:

View File

@@ -1,5 +1,5 @@
---
title: Belgische Waffeln
title: 🧇 Belgische Waffeln
date: 2025-03-14T18:31:02+01:00
draft: false
tags:

View File

@@ -1,5 +1,5 @@
---
title: Hühnerfond
title: 🐓 Hühnerfond
date: 2024-12-04T20:30:27Z
draft: false
tags:

View File

@@ -1,5 +1,5 @@
---
title: Hühnersuppe
title: 🍲 Hühnersuppe
date: 2024-12-04T19:52:16Z
draft: false
tags:

View File

@@ -1,20 +1,20 @@
---
title: Hummus
title: " 🍯 Hummus"
date: 2025-03-14T18:43:14+01:00
draft: false
tags:
---
| Zutat |
| ---------------- |
| Kichererbsen |
| Kichererbsen-Sud |
| Knoblauchöl |
| Sesamöl |
| Kardamon |
| Kreuzkümmel |
| Salz |
| Pfeffer |
| Menge | Zutat |
| ------ | ---------------- |
| 1 Glas | Kichererbsen |
| | Kichererbsen-Sud |
| | Knoblauchöl |
| | Sesamöl |
| | Kardamon |
| | Kreuzkümmel |
| | Salz |
| | Pfeffer |
# 👨‍🍳 Zubereitung

View File

@@ -1,9 +1,9 @@
---
title: "Italienische Meringué"
title: 🧁 Italienische Meringué
date: 2024-09-27T16:25:08Z
draft: false
tags:
- Dessert
- Dessert
---
| Menge | Zutat |

View File

@@ -1,5 +1,5 @@
---
title: "Kokoseis"
title: 🍦 Kokoseis
date: 2024-09-25T11:51:58Z
draft: false
tags:

View File

@@ -0,0 +1,27 @@
---
title: 🥗 Mediteraner Nudelsalat
date: 2025-03-14T22:32:35+01:00
draft: false
tags:
---
| 500 g | Nudeln |
| ------ | ---------------------------------------- |
| 1 Glas | Schwarze, entsteinte Oliven ohne Kräuter |
| 1 Glas | Getrocknete Tomaten in Öl |
| 4 EL | Öl von den Tomaten |
| 4 EL | Tomatenmark |
| 1 Zehe | Knoblauch |
| 1 Pck. | Schafskäse |
| 1 Pck. | Pinienkerne |
| | Salz und Pfeffer |
# 👨‍🍳 Zubereitung
* Die Nudeln gar kochen und anschließend abgießen.
* Den Schafskäse mit den Händen zerkrümeln.
* Die getrockneten Tomaten abtropfen lassen, dabei 4 EL vom Öl auffangen. Evtl. auch die Tomaten und die Oliven klein schneiden.
* Alle Zutaten von Oliven bis Schafskäse mit den noch warmen Nudeln vermischen. Mit Salz und Pfeffer abschmecken. 
* Die kurz in der Pfanne gerösteten Pinienkerne kurz vor dem Servieren unterheben. 
* Der Salat schmeckt am besten, wenn er 1 Nacht durchgezogen ist.

View File

@@ -1,5 +1,5 @@
---
title: "Schoko-Tarte-Creme"
title: 🍫 Schoko-Tarte-Creme
date: 2024-09-25T11:54:54Z
draft: false
tags:

View File

@@ -1,10 +1,10 @@
---
title: "Schokoladen-Mousse"
title: 🍫 Schokoladenmousse
date: 2024-09-25T11:20:58Z
draft: false
tags:
- Schokolade
- Dessert
- Schokolade
- Dessert
---
![Schokoladen Mousse](/img/schokoladen-mousse.jpg)

View File

@@ -39,25 +39,27 @@
<body>
{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
<main>
<header><h1 id="tag_{{ .Title }}">{{ block "title" . }}{{ end }}</h1></header>
<header>
<h1 id="tag_{{ .Title }}">{{ block "title" . }}{{ end }}</h1>
</header>
<article>
{{ block "main" . }}
{{ .Content }}
{{ end }}
{{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}}
{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}
{{ block "main" . }}
{{ .Content }}
{{ end }}
</article>
{{ if .Params.tags }}
<p style="margin-block-start: 3em;">Tags:
{{ if .Params.tags }}
<p class="taglist" >Tags:
{{ $tags := .Params.tags }}
{{ range $index, $tag := $tags }}
<a href="{{ "tags/" | relLangURL }}{{ $tag | urlize }}">{{ $tag }}</a>{{ if lt (add $index 1) (len $tags) }}, {{ end }}
<a class="tag" href="{{ "tags/" | relLangURL }}{{ $tag | urlize }}">{{ $tag }}</a>{{ if lt (add $index 1) (len $tags) }}, {{ end }}
{{ end }}
</p>
{{ end }}
</main>
{{ block "footer" . }}
<footer>
<a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>

View File

@@ -1,20 +1,14 @@
{{ define "title" -}}
{{ .Title | title }}
{{ if eq .Kind "term" }}🏷️ {{end}}{{ .Title | title }}
{{- end }}
{{ define "main" -}}
{{ .Content }}
<ul>
{{- range.Pages }}
<li>
{{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> &ndash; {{ end -}}
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{- if .Param "authorsinlist" }}
{{ with .Params.authors }}
by
{{ delimit . ", " " und " }}
{{end}}
{{ end -}}
</li>
{{- end }}
</ul>
{{ .Content }}
<ul>
{{- range.Pages }}
<li class="no-before">
<a class="no-underline" href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{- end }}
</ul>
{{- end }}

View File

@@ -1,8 +0,0 @@
<nav>
<ul>
{{- $sec := .Page.Section }}{{ $file := .File.TranslationBaseName -}}
{{ range.Site.Menus.main.ByWeight }}{{ $base := path.Base .URL }}
<li><a {{ if or ( eq $sec $base ) ( eq $file $base ) ( and (eq $sec "") ( eq $file "_index") (eq $base "/") ) }}class="menuactive" {{ end }}href="{{ .URL }}"><span class=pre>{{ .Pre }}</span><span class=menuname>{{ .Name }}</span></a></li>
{{- end }}
</ul>
</nav>

View File

@@ -1,10 +0,0 @@
{{ if or .Next .Prev -}}
<div id="nextprev">
{{- with .Prev }}
<a href="{{ .RelPermalink}}"><div id="prevart">Previous:<br>{{.Title}}</div></a>
{{ end -}}
{{- with .Next -}}
<a href="{{ .RelPermalink}}"><div id="nextart">Next:<br>{{.Title}}</div></a>
{{ end -}}
</div>
{{ end -}}

View File

@@ -1,13 +1,13 @@
{{- if isset .Params "tags" -}}
{{- $tagsLen := len .Params.tags -}}
{{- if gt $tagsLen 0 -}}
<div style="clear:both" class=taglist>
{{- with .Site.Params.relatedtext }}{{ . }}<br>{{ end -}}
{{- range $k, $v := .Params.tags -}}
{{- $url := printf "tags/%s" (. | urlize | lower) -}}
<a id="tag_{{ . | lower }}" href="{{ $url | absURL }}">{{ . | title }}</a>
{{- if lt $k (sub $tagsLen 1) }} &middot; {{ end -}}
{{- end -}}
</div>
{{- $tagsLen := len .Params.tags -}}
{{- if gt $tagsLen 0 -}}
<div class="taglist">
{{- with .Site.Params.relatedtext }}{{ . }}<br>{{ end -}}
{{- range $k, $v := .Params.tags -}}
{{- $url := printf "tags/%s" (. | urlize | lower) -}}
<a class="tag" id="tag_{{ . | lower }}" href="{{ $url | absURL }}">{{ . | title }}</a>
{{- if lt $k (sub $tagsLen 1) }} &middot; {{ end -}}
{{- end -}}
</div>
{{- end -}}
{{- end }}

View File

@@ -1,10 +0,0 @@
<details>
<summary>Click to reveal video.</summary>
<iframe src="{{ index .Params 0 }}"
loading="lazy"
sandbox="allow-same-origin allow-scripts allow-popups"
allowfullscreen frameborder="0"
class="embvid"
title="Embedded Video">
</iframe>
</details>

View File

@@ -1,20 +0,0 @@
<!--
class: class of the figure
link: url the image directs to
alt: alternative text
caption: caption
mouse: what the image says when moused over ("title" in HTML)
-->
<figure {{ with .Get "class" }}class="{{.}}"{{ end -}}>
{{- with .Get "link"}}<a href="{{.}}">{{ end -}}
<img src="{{ .Get "src" }}"
{{- with .Get "mouse" }} title="{{.}}"{{ end -}}
{{- with .Get "alt" }} alt="{{.}}"{{ end -}}
>
{{- if .Get "link"}}</a>{{ end -}}
{{- with .Get "caption" -}}
<figcaption>
{{- . -}}
</figcaption>
{{- end -}}
</figure>

View File

@@ -1,3 +0,0 @@
{{ if isset .Site.Taxonomies "tags" }}{{ if not (eq (len .Site.Taxonomies.tags) 0) }} <ul id="tagcloud">
{{ range $name, $items := .Site.Taxonomies.tags }}{{ $url := printf "%s/%s" "tags" ($name | urlize | lower)}}<li><a href="{{ $url | absURL }}" id="tag_{{ $name }}">{{ $name | title }}</a></li>
{{ end }}</ul>{{ end }}{{ end }}

View File

@@ -1,6 +0,0 @@
<iframe src="{{ index .Params 0 }}"
loading="lazy"
sandbox="allow-same-origin allow-scripts allow-popups"
allowfullscreen frameborder="0"
title="Embedded Video">
</iframe>