Compare commits
1 Commits
ed58de749c
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 8b671291e7 |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
content/*
|
||||
23
assets/css/custom.css
Normal file
23
assets/css/custom.css
Normal 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
12
config.toml
Normal 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"
|
||||
@@ -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.*
|
||||
|
||||
15
hugo.toml
15
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"
|
||||
|
||||
14
layouts/partials/footer.html
Normal file
14
layouts/partials/footer.html
Normal 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>
|
||||
Reference in New Issue
Block a user