summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Olech <nddr89@gmail.com>2021-10-17 23:16:59 +0200
committerAdam Olech <nddr89@gmail.com>2021-10-17 23:16:59 +0200
commite971532833605f9102545202ba04a878ddf214dc (patch)
treec87964580cd202ce58365cd10d93a1be933d8c5a
parent5bff81ccd9851e34f3488a8e7d9f0fb934084d02 (diff)
Add the old about page
-rw-r--r--config.toml14
-rw-r--r--content/about.md23
-rw-r--r--static/css/custom.css4
3 files changed, 41 insertions, 0 deletions
diff --git a/config.toml b/config.toml
index e1768e9..1dc344a 100644
--- a/config.toml
+++ b/config.toml
@@ -7,3 +7,17 @@ title = 'where extinct potatos go to retire'
author = "Adam Olech"
profilePicture = "images/me.jpg"
customCss = ["css/custom.css"]
+
+[menu]
+
+ [[menu.main]]
+ name = "Posts"
+ weight = 100
+ identifier = "posts"
+ url = "/posts/"
+
+ [[menu.main]]
+ name = "About"
+ identifier = "about"
+ weight = 300
+ url = "/about/"
diff --git a/content/about.md b/content/about.md
new file mode 100644
index 0000000..2cccea1
--- /dev/null
+++ b/content/about.md
@@ -0,0 +1,23 @@
++++
+title = "About"
+description = "Tiny little website describing my technical endeavors..."
+date = "2020-05-28"
+aliases = ["about-us","about-hugo","contact"]
+author = "Adam"
++++
+
+Hello, fellow human being (or web scrapper)!
+
+The name's Adam and I want to welcome you to my personal website describing (but not limited to) my technical endeavors.
+I'm absolutely obsessed with Linux and anything that comes with it.
+I've been an active user since 2014 and have come a long way.
+
+I'm also a university student (majoring in computer science) and I work for a software company in Poznan.
+Somebody once asked if I had other interests than staring at a computer screen 24/7 and I actually do - I like taking photos with my camera while exploring rural Poland, I do some music production and mixing on the side and I enjoy a good read of psychology-related books.
+I'm also a linguistics geek after hours, indulging in this hobby as much as I can.
+
+My professional experience spans from individual English tutoring (although lately I've been doing it less, due to the time constraints of the day being only 24 hours, can somebody fix this please?) to software development and Linux system administration.
+I'm just getting started though but I'm very excited about this career.
+It's like a childhood dream come true.
+
+If you have any inquiries, questions, complaints or you just want to talk, please do not hesitate to drop me a message at **me(at)aole.ch**!
diff --git a/static/css/custom.css b/static/css/custom.css
index 4fba6b6..86a91d0 100644
--- a/static/css/custom.css
+++ b/static/css/custom.css
@@ -1,3 +1,7 @@
.sidebar {
background-image: linear-gradient(to right top, #084035, #215a56, #3d7579, #5d919c, #80adbf);
}
+
+body > aside > div > div > h1 {
+ font-style: italic;
+}