summaryrefslogtreecommitdiff
path: root/views/about.html
diff options
context:
space:
mode:
authorhorus2021-02-24 15:09:40 +0100
committerhorus2021-02-24 15:09:40 +0100
commite4149f7c536199575a1e6b2b8b54eec1c3c1160c (patch)
tree6d2bb6cb165d0f2cbcfc306378e6141d77cef80c /views/about.html
downloadmoehring-e4149f7c536199575a1e6b2b8b54eec1c3c1160c.tar.gz
initial commit
Diffstat (limited to 'views/about.html')
-rw-r--r--views/about.html62
1 files changed, 62 insertions, 0 deletions
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 %}
+
+<div class="container">
+
+ <h1>About Me</h1>
+<p>
+Hi!
+</p>
+
+<div class="float-right">
+<img src="/img/me.png" class="float-right" width=200 height=200>
+<br>
+<div class="ttext-muted text-small text-center"><em>That's how I look today.</em></div>
+</div>
+
+<p>
+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.
+</p>
+
+<p>
+ 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.
+ <br>
+ My girlfriend and I started to do competitive ballroom dancing. We also dabbled with some Latin dance and Swing on a much lower niveau.
+</p>
+
+<p>
+ Another hobby I’m celebrating is good liquor. I’m the author of <a href="https://www.fuselkoenig.de" title="Fuselkönig - Supermarkt-Spirituosen im Test">Fuselkönig.de</a>, 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.
+</p>
+
+<p>
+ Last but not least I'm interested in molecular gastronomy (reading books like <a href="https://en.wikipedia.org/wiki/On_Food_and_Cooking" title="On Food and Cooking">this famous one</a> by Harold McGee), chinese or japanese tea (everything <a href="https://en.wikipedia.org/wiki/Camellia_sinensis" title="Also known as tea plant">Camellia sinensis</a>) and fresh grinded coffee, currently using a Baratza Encore and the AeroPress.
+</p>
+
+<!-- p>
+If you like, you can follow me on Twitter or Pinterest. Some of my projects are listed here as well.
+</p-->
+
+</div>
+
+{% endblock %}