diff options
| author | horus | 2021-02-24 15:09:40 +0100 |
|---|---|---|
| committer | horus | 2021-02-24 15:09:40 +0100 |
| commit | e4149f7c536199575a1e6b2b8b54eec1c3c1160c (patch) | |
| tree | 6d2bb6cb165d0f2cbcfc306378e6141d77cef80c /views/index.html | |
| download | moehring-e4149f7c536199575a1e6b2b8b54eec1c3c1160c.tar.gz | |
initial commit
Diffstat (limited to 'views/index.html')
| -rw-r--r-- | views/index.html | 42 |
1 files changed, 42 insertions, 0 deletions
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 %} + +<div class="container"> + + <ul class="list-unstyled text-left"> + <li> + I did some stuff online: + <br> + <a href="/projects" title="projects">Side Projects</a> + </li> + <li> + <strike>Stupi</strike>.. serious things I needed to exist: + <br> + <a href="/tools" title="tools">Some funny, simple tools</a> + </li> + <li> + <a href="/about" title="about me">About Me</a> / <a href="https://www.fuselkoenig.de/kontakt/" title="contact me">Contact</a> + </li> + <li> + + </li> + </ul> + +</div> + +{% endblock %} |
