From e4149f7c536199575a1e6b2b8b54eec1c3c1160c Mon Sep 17 00:00:00 2001 From: horus Date: Wed, 24 Feb 2021 15:09:40 +0100 Subject: initial commit --- views/404.html | 14 +++++++ views/about.html | 62 ++++++++++++++++++++++++++++ views/index.html | 42 +++++++++++++++++++ views/projects.html | 26 ++++++++++++ views/snippets/layout.html | 100 +++++++++++++++++++++++++++++++++++++++++++++ views/snippets/navbar.html | 27 ++++++++++++ views/tools.html | 35 ++++++++++++++++ 7 files changed, 306 insertions(+) create mode 100644 views/404.html create mode 100644 views/about.html create mode 100644 views/index.html create mode 100644 views/projects.html create mode 100644 views/snippets/layout.html create mode 100644 views/snippets/navbar.html create mode 100644 views/tools.html (limited to 'views') diff --git a/views/404.html b/views/404.html new file mode 100644 index 0000000..fc75002 --- /dev/null +++ b/views/404.html @@ -0,0 +1,14 @@ +{% extends "snippets/layout.html" %} + +{% block title "404 | iamfabulous.de" %} + +{% block main %} + +
+ +

404 - Page not Found

+

Oh no! This page does not exist. Start over. Do not pass Go! Do not collect 200 dollars!

+ +
+ +{% endblock %} diff --git a/views/about.html b/views/about.html new file mode 100644 index 0000000..968a84b --- /dev/null +++ b/views/about.html @@ -0,0 +1,62 @@ +{% extends "snippets/layout.html" %} + +{% block title "about me | iamfabulous.de" %} + +{% block css %} +.main { + margin-top: 1.5rem; + font-size: 1.25rem; +} +.float-right-mb { + float: right !important; +} +@media (max-width: 992px) { + .float-right-mb { + float: none !important; + } +} +.text-small { + font-size: 1rem; +} +{% endblock %} + +{% block main %} + +
+ +

About Me

+

+Hi! +

+ +
+ +
+
That's how I look today.
+
+ +

+I study computer science in Berlin and work at my university’s data center. There I’m currently focusing on traditional database technology, including modern SQL, database applications and porting software from MySQL or Sybase to PostgreSQL. My favourite part is complaining over MySQL’s date functions. At work we use PHP, but on my own I rather write stuff in Golang. +

+ +

+ I play the piano since I’m 7 years old. Not so long ago I began taking lessons in classical singing and participated since in different choirs. Some of our performances included the "Elias" by Mendelssohn, "Petite messe solennelle" by Rossini, "Ein deutsches Requiem" by Brahms and the Symphony No. 8 by Mahler. +
+ My girlfriend and I started to do competitive ballroom dancing. We also dabbled with some Latin dance and Swing on a much lower niveau. +

+ +

+ Another hobby I’m celebrating is good liquor. I’m the author of Fuselkönig.de, a blog about spirits. Yeah, you read that right, I blog about alcohol. Why? Because I’m excited by fragrances since I’m young and, honestly, perfume does not taste as good. If you visit Germany, maybe you should check out the blog to know which bottle you should grab and which you better leave on the shelf. It’s in German, but Google Translator should do. +

+ +

+ Last but not least I'm interested in molecular gastronomy (reading books like this famous one by Harold McGee), chinese or japanese tea (everything Camellia sinensis) and fresh grinded coffee, currently using a Baratza Encore and the AeroPress. +

+ + + +
+ +{% endblock %} diff --git a/views/index.html b/views/index.html new file mode 100644 index 0000000..055a391 --- /dev/null +++ b/views/index.html @@ -0,0 +1,42 @@ +{% extends "snippets/layout.html" %} + +{% block css %} + .main { + margin-top: 8rem; + } + @media (max-width: 992px) { + .main { + margin-top: 4rem; + } + } + li { + margin-bottom: 1rem; + } +{% endblock %} + +{% block main %} + +
+ + + +
+ +{% endblock %} diff --git a/views/projects.html b/views/projects.html new file mode 100644 index 0000000..59ccf7b --- /dev/null +++ b/views/projects.html @@ -0,0 +1,26 @@ +{% extends "snippets/layout.html" %} + +{% block title "projects | iamfabulous.de" %} +{% block main %} + +
+ +

My Projects

+ + +
+ +{% endblock %} diff --git a/views/snippets/layout.html b/views/snippets/layout.html new file mode 100644 index 0000000..ff468a0 --- /dev/null +++ b/views/snippets/layout.html @@ -0,0 +1,100 @@ + + + + + {% block description %} + + {% endblock %} + + {% block maincss %} + + + {% endblock %} + + {% block title %} + iamfabulous.de + {% endblock %} + + + + + + {% include("snippets/navbar.html") %} + +
+ {% block main %} + {% endblock %} +
+ + + + + + + + + + diff --git a/views/snippets/navbar.html b/views/snippets/navbar.html new file mode 100644 index 0000000..d8819dc --- /dev/null +++ b/views/snippets/navbar.html @@ -0,0 +1,27 @@ + diff --git a/views/tools.html b/views/tools.html new file mode 100644 index 0000000..887d683 --- /dev/null +++ b/views/tools.html @@ -0,0 +1,35 @@ +{% extends "snippets/layout.html" %} + +{% block title "tools | iamfabulous.de" %} +{% block main %} + +
+ +

Some funny, simple tools

+ + +
+ +{% endblock %} -- cgit v1.2.3