From e971532833605f9102545202ba04a878ddf214dc Mon Sep 17 00:00:00 2001 From: Adam Olech Date: Sun, 17 Oct 2021 23:16:59 +0200 Subject: Add the old about page --- config.toml | 14 ++++++++++++++ content/about.md | 23 +++++++++++++++++++++++ static/css/custom.css | 4 ++++ 3 files changed, 41 insertions(+) create mode 100644 content/about.md 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; +} -- cgit v1.2.1