diff options
| author | horus | 2021-03-01 17:49:53 +0100 |
|---|---|---|
| committer | horus | 2021-03-01 17:49:53 +0100 |
| commit | 4545165e784b5be3bf46fea7b241a152282ffe80 (patch) | |
| tree | 4e118e372f968bf9a6b2f92c555b3b939dab2ae9 /views | |
| parent | c52a91044381fd770c5aa71ec27dda8c9e95dddd (diff) | |
| download | moehring-4545165e784b5be3bf46fea7b241a152282ffe80.tar.gz | |
add quote and flavor text
Diffstat (limited to 'views')
| -rw-r--r-- | views/index.html | 3 | ||||
| -rw-r--r-- | views/projects.html | 6 | ||||
| -rw-r--r-- | views/snippets/layout.html | 10 | ||||
| -rw-r--r-- | views/tools.html | 9 |
4 files changed, 26 insertions, 2 deletions
diff --git a/views/index.html b/views/index.html index ba4dd1e..48e7520 100644 --- a/views/index.html +++ b/views/index.html @@ -18,6 +18,9 @@ <div class="container"> + <div class="quote"> + <em>I'm just a simple man, trying to find my way in the universe.</em> + </div> <ul class="list-unstyled text-left index-list"> <li> I did some stuff online: diff --git a/views/projects.html b/views/projects.html index 089434b..6bf8381 100644 --- a/views/projects.html +++ b/views/projects.html @@ -5,7 +5,11 @@ <div class="container"> - <h1>My Projects</h1> + <div class="flavor-text"> + <h1>My Projects</h1> + <em>Stuff I spent my free time on</em> + </div> + <ul> <li> <a href="https://www.fuselkoenig.de" title="Fuselkönig - Supermarkt-Spirituosen im Test">Fuselkönig.de</a> - Blog über Alkohol diff --git a/views/snippets/layout.html b/views/snippets/layout.html index b788215..416f119 100644 --- a/views/snippets/layout.html +++ b/views/snippets/layout.html @@ -56,6 +56,16 @@ width: 30%; } } + + .quote { + margin-bottom: 3.5rem; + } + .flavor-text { + margin-bottom: 2rem; + } + .flavor-text > h1 { + margin-bottom: 0; + } </style> <style> {% block css %} diff --git a/views/tools.html b/views/tools.html index 2148efc..ee0f699 100644 --- a/views/tools.html +++ b/views/tools.html @@ -1,11 +1,18 @@ {% extends "snippets/layout.html" %} {% block title "tools | maximilianmoehring.com" %} + +{% block css %} +{% endblock %} {% block main %} <div class="container"> - <h1>Some funny, simple tools</h1> + <div class="flavor-text"> + <h1>Some funny, simple tools</h1> + <em>Stupi.. serious things I needed to exist</em> + </div> + <ul> <li> <a href="https://faces.iamfabulous.de" title="Best faces on the net" rel="nofollow">Best faces on the net</a> |
