1
0

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
This commit is contained in:
2025-12-23 00:19:38 +01:00
parent ed58de749c
commit 8b671291e7
6 changed files with 79 additions and 6 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
content/*

23
assets/css/custom.css Normal file
View File

@@ -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;
}

12
config.toml Normal file
View File

@@ -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"

View File

@@ -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.*

View File

@@ -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"

View File

@@ -0,0 +1,14 @@
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>© {{ now.Format "2006" }} {{ .Site.Title }}</span>
<span>Made with <a href="https://gohugo.io">Hugo</a></span>
</div>
<div class="contact">
<span>📧 Contact: <a href="mailto:your.email@example.com">your.email@example.com</a></span>
<span>🔗 <a href="https://github.com/florianuhlig" target="_blank">GitHub</a></span>
<span>💼 <a href="https://linkedin.com/in/yourprofile" target="_blank">LinkedIn</a></span>
</div>
</div>
</footer>