From 8b671291e7ae47902e27b39ab67438b32adb836c Mon Sep 17 00:00:00 2001 From: florianuhlig Date: Tue, 23 Dec 2025 00:19:38 +0100 Subject: [PATCH] new file: .gitignore new file: assets/css/custom.css new file: config.toml modified: content/posts/AboutMe.md modified: hugo.toml new file: layouts/partials/footer.html --- .gitignore | 1 + assets/css/custom.css | 23 +++++++++++++++++++++++ config.toml | 12 ++++++++++++ content/posts/AboutMe.md | 20 ++++++++++++++------ hugo.toml | 15 +++++++++++++++ layouts/partials/footer.html | 14 ++++++++++++++ 6 files changed, 79 insertions(+), 6 deletions(-) create mode 100644 .gitignore create mode 100644 assets/css/custom.css create mode 100644 config.toml create mode 100644 layouts/partials/footer.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9e0cb56 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +content/* diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..91a6cbc --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,23 @@ +.footer { + margin-top: 50px; + padding: 20px 0; + border-top: 1px solid var(--accent); +} + +.footer__inner { + display: flex; + flex-direction: column; + align-items: center; + gap: 10px; +} + +.contact { + display: flex; + flex-wrap: wrap; + gap: 15px; + justify-content: center; +} + +.contact span { + white-space: nowrap; +} diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..fa96e96 --- /dev/null +++ b/config.toml @@ -0,0 +1,12 @@ +[params] + themeColor = "pink" + fullWidthTheme = false + centerTheme = true + + # Custom CSS + customCSS = ["css/custom.css"] + + # Your contact info (optional - for use in templates) + email = "blog@fuhlig.de" + github = "florianuhlig" + linkedin = "yourprofile" diff --git a/content/posts/AboutMe.md b/content/posts/AboutMe.md index 859abec..fea54ec 100644 --- a/content/posts/AboutMe.md +++ b/content/posts/AboutMe.md @@ -6,10 +6,18 @@ weight: 1 draft: false --- -## Who am I -My name is Florian and I'm 22 years old. -I work as an IT Technican mainly with Linux Servers in Frankfurt, Germany. -My company is midsized around 50 people working here. -I mainly want to post about what I learned, what inspires me. +## 👋 Who am I? -Well I dont really, this just seemed like a great idea to waste some time. +My name is **Florian**, and I'm a 22-year-old IT Technician based in Frankfurt, Germany. I spend my days working with Linux servers at a mid-sized company of around 50 people, dealing with everything from Docker containers to network infrastructure. + +## 💭 Why This Blog? + +I created this space to document what I learn, share the things that inspire me, and maybe help someone else solve a problem they're stuck on. Sometimes the best way to understand something is to explain it to others. + +## 🤷 The Real Reason + +Well, if I'm being completely honest... this just seemed like a great idea to waste some time. But hey, if you're reading this, at least the time wasn't completely wasted, right? + +--- + +*Feel free to reach out if you have questions about anything I post or just want to chat about infrastructure, Docker, or why your Hugo theme won't load properly.* diff --git a/hugo.toml b/hugo.toml index be89ee6..bfd4d09 100644 --- a/hugo.toml +++ b/hugo.toml @@ -11,3 +11,18 @@ theme = "terminal" [params.logo] logoText = "TechnicalBlog" logoHomeLink = "/" + +# Add footer info +[params.footer] + trademark = "© 2025 Florian" + rss = true + copyright = true + author = true + +[[params.social]] + name = "email" + url = "mailto:florian@example.com" + +[[params.social]] + name = "github" + url = "https://github.com/yourusername" diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..5a3d990 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,14 @@ +