blob: 48e7520b00cdcd4dff2b753385358992dc700520 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{% extends "snippets/layout.html" %}
{% block css %}
.main {
margin-top: 8rem;
}
@media (max-width: 992px) {
.main {
margin-top: 4rem;
}
}
.index-list > li {
margin-bottom: 1rem;
}
{% endblock %}
{% block main %}
<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:
<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 %}
|