summaryrefslogtreecommitdiff
path: root/views/index.html
blob: 104e2c8b072f2d216d534695540262e5ba828084 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{% extends "snippets/layout.html" %}

{% block css %}
	.main {
		margin-top: 4rem;
		margin-bottom: 4rem;
	}
	@media (max-width: 992px) {
		.main {
			margin-top: 4rem;
			margin-bottom: 4rem;
		}
	}
	.index-list > li {
		margin-bottom: 1rem;
	}

	body {
		background-color: #1c1c1c;
	}

	#footer {
		background-color: #e1e1e1;
	}
	.string {
		color: #ddd277;
	}
	.keyword {
		color: #cd015f;
	}
	.tab-over-space {
		margin-left: 2rem;
	}
	.text-muted {
		color: #808080 !important;
	}
{% endblock %}

{% block main %}

<div class="container">

	<div class="quote">
		<code>[ <span class="keyword">quote</span> => <em class="string">I'm just a simple man, trying to find my way in the universe.</em> ]</code>
	</div>
	<ul class="list-unstyled text-left index-list">
		<li>
			<span class="text-muted"># Stuff I spent my free time on:</span>
			<br>
			<code>
				<span class="keyword">while</span> lazy; <span class="keyword">do</span>
				<br>
				<a class="tab-over-space" href="/projects" title="uncaught exception">Hobby => Projects()</a>
				<br>
				<span class="keyword">endwhile</span>
			</code>

		</li>
		<li>
			<span class="text-muted"># <strike>Stupi</strike>.. serious things I needed to exist:</span>
			<br>
			<code>
				<span class="keyword">while</span> crazy; <span class="keyword">do</span>
				<br>
				<span class="tab-over-space">eval(<span class="string">"</span><a href="/tools" title="eval is bad">boot up tools page</a><span class="string">"</span>)</span>
				<br>
				<span class="keyword">endwhile</span>
			</code>
		</li>
		<li>
			<span class="text-muted"># I have more hobbys besides sleep(10)</span>
			<br>
			<code>
				<span class="keyword">if</span> interested; <span class="keyword">do</span>
				<br>
				<span class="tab-over-space">
					<a href="/about" title="me.about() makes more sense">About.Me()</a>
					<span class="keyword">or</span>
					<a href="https://www.fuselkoenig.de/kontakt/" title="don't tell me I forgot the semicolons">Contact.Me()</a></span>
				<br>
				<span class="keyword">endif</span>
			</code>
		</li>
		<li>
		</li>
	</ul>
	<code class="string">" syntax error: unexpected end of file</code>

</div>

{% endblock %}