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 { ::-moz-selection {
background: blue; background: blue;
color: #fff; color: #fff;
@@ -21,62 +10,18 @@ body {
text-shadow: none; text-shadow: none;
} }
main > header > h1 {
border-bottom: 6px solid var(--darkMaincolor);
}
body {
color: white;
background-color: #202124;
}
hr { hr {
border-top: 3px dotted blue; 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 { a {
border-bottom: 3px solid var(--darkMaincolor); border-bottom: 3px solid var(--darkMaincolor);
@@ -87,84 +32,15 @@ a:hover {
color: black; color: black;
} }
.site-description a { h1,
h2,
h3,
h4,
h5,
h6 {
color: #ddd; 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 { .footer {
border-color: #333; 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 { table {
border-collapse: collapse; border-collapse: collapse;
} }
@@ -15,43 +132,19 @@ table td {
font-size: small; font-size: small;
} }
/* footer */
footer {
border-top: 0.2rem dotted var(--bordercl);
padding: 2rem 0rem;
margin-top: 10rem;
text-align: center;
}
/* Page Headings */ /* --- images --- */
main > header > h1 {
font-size: 1.6rem;
border-bottom: 6px solid var(--maincolor);
}
main > header > h1::before{
content: "";
}
main {
max-width: 800px ;
margin: auto ;
}
img { 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 { #nextprev {
/* The container for both the previous and next articles. */ /* The container for both the previous and next articles. */
} }
@@ -67,134 +160,33 @@ img {
max-width: 33%; max-width: 33%;
} }
/* Markdown */
:root{ /* --- tags --- */
--maincolor: red;
--bordercl:rebeccapurple; .taglist {
--callouctcolor:dodgerblue; text-align: center;
--hovercolor:navy; margin-block-start: 3em;
--darkMaincolor: #50fa7b;
} }
html { .tag::before {
color: #232333; content: "🏷 ";
font-family: 'Roboto Mono', monospace;
font-size: 15px;
line-height: 1.6em;
} }
body{
display: block; /* --- other classes --- */
margin: 8px;
.no-before::before {
content: '';
} }
* { .no-underline {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); border-bottom: none;
} }
::selection { article .title {
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;
margin-bottom: 1em; 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 { .content {
margin-bottom: 4em; margin-bottom: 4em;
margin-left: auto; margin-left: auto;
@@ -204,32 +196,6 @@ pre code {
word-wrap: break-word; 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 { .meta {
color: #999; color: #999;
letter-spacing: -0.5px; letter-spacing: -0.5px;
@@ -244,136 +210,8 @@ h6::before { color: var(--maincolor); content: '###### '; }
display: inline-block; 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 { .site-description {
display: flex; display: flex;
justify-content: space-between; 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 ;
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,5 +1,5 @@
--- ---
title: "Italienische Meringué" title: 🧁 Italienische Meringué
date: 2024-09-27T16:25:08Z date: 2024-09-27T16:25:08Z
draft: false draft: false
tags: tags:

View File

@@ -1,5 +1,5 @@
--- ---
title: "Kokoseis" title: 🍦 Kokoseis
date: 2024-09-25T11:51:58Z date: 2024-09-25T11:51:58Z
draft: false draft: false
tags: 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 date: 2024-09-25T11:54:54Z
draft: false draft: false
tags: tags:

View File

@@ -1,5 +1,5 @@
--- ---
title: "Schokoladen-Mousse" title: 🍫 Schokoladenmousse
date: 2024-09-25T11:20:58Z date: 2024-09-25T11:20:58Z
draft: false draft: false
tags: tags:

View File

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

View File

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

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

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>