Skip to content

Commit 9637cff

Browse files
committed
initial commit development branch
1 parent 7891df8 commit 9637cff

File tree

6 files changed

+77
-3
lines changed

6 files changed

+77
-3
lines changed

branch.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
development

config.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ paths = "safe"
3939
taxonomies = "safe"
4040
anchors = "safe"
4141

42+
[languages.de]
43+
generate_feeds = true # there will be a feed for French content
44+
build_search_index = true
45+
taxonomies = [
46+
{ name = "categories", feed = true },
47+
{ name = "tags", feed = false },
48+
]
49+
4250
[extra]
4351
locale = "de_DE"
4452
logo = "icon-192x192.png"

content/_index.de.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
+++
2+
template = "index.html"
3+
title = "froehlich"
4+
+++
5+
6+
<div class="introduction">
7+
<img src="portrait.png" class="portrait" alt="That's me">
8+
<h2>Guten Tag!</h2>
9+
<p>
10+
Willkommen in meiner Ecke. As a German computer enthusiast, I like exploring the links between technology and society, sharing my ideas and discoveries here with you.
11+
</p>
12+
<p>
13+
<strong>Since I don't support Meta, I wanted to provide you with something different and more authentic.
14+
</strong>
15+
</p>
16+
<br>
17+
</div>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
+++
2+
title = "Über mich"
3+
date = 2025-07-12T11:48:00Z
4+
updated = 2025-07-15T12:15:00Z
5+
description = "Portfolio"
6+
weight = 0
7+
draft = false
8+
render = true
9+
aliases = []
10+
authors = ["Michael Fröhlich"]
11+
in_search_index = true
12+
#slug = "myself"
13+
#path = "aboutme/myself"
14+
template = "page.html"
15+
[taxonomies]
16+
categories = ["Über Mich"]
17+
tags = ["Portfolio", "CV"]
18+
[extra]
19+
subtitle = "Über mich"
20+
disable_toc = false
21+
+++
22+
23+
## Über Mich
24+
25+
Ich bin Michael, Autodidakt und IT-Generalist vom Rheinland.
26+

content/uebermich/Myself/index.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title = "Über mich"
33
date = 2025-07-12T11:48:00Z
44
updated = 2025-07-15T12:15:00Z
5-
description = "How to employ your garbage collector sustainably on NixOS"
5+
description = "Myself"
66
weight = 0
77
draft = false
88
render = true
@@ -20,6 +20,7 @@ subtitle = "Über mich"
2020
disable_toc = false
2121
+++
2222

23-
## Über mich
23+
## About Me
24+
25+
I'm Michael, a Rhineland based auto-didactic IT-Generalist.
2426

25-
## Hallo Welt

shell.nix

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
let
2+
pkgs = import <nixpkgs> {};
3+
in pkgs.mkShell {
4+
packages = with pkgs; [
5+
(vscode-with-extensions.override {
6+
vscode = vscodium;
7+
vscodeExtensions = with vscode-extensions; [
8+
bbenoist.nix
9+
ecmel.vscode-html-css
10+
streetsidesoftware.code-spell-checker
11+
oderwat.indent-rainbow
12+
esbenp.prettier-vscode
13+
usernamehw.errorlens
14+
carrie999.cyberpunk-2020
15+
bierner.comment-tagged-templates
16+
dbaeumer.vscode-eslint
17+
];
18+
})
19+
];
20+
}
21+

0 commit comments

Comments
 (0)