summaryrefslogtreecommitdiff
path: root/views/index.html
blob: ba4dd1e234019645034d128e11d12a961ef931ed (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
{% 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">

	<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 %}