blob: 24228995561287c115a0b2454342af8a28ab1d63 (
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
|
{% extends "base.html" %}
{% block content %}
<div class="intro">
<h2>Hello and Welcome!</h2>
<p>
My name is Rasmus. I am studying Computer Science and Physics
</p>
<p>
This site has many purposes. It is is some ways the replacement
of my social-media, and so I put some of my likings out here.
Also, it hosts my Git and E-mail server, which I find pretty cool,
and has some other stuff aswell.
</br>
So, Go on, have a look around!
</p>
</div>
<div class="afterIntro">
<div class="left">
<h3>Food for Thought</h3>
<section>
<div class="people">
<h4>Some pople I look up to</h4>
<ul>
<li>Lex Fridman</li>
<li>Elon Musk</li>
</ul>
</div>
<div class="writers">
<h4>Some writers I appreciate</h4>
<ul>
<li>Albert Camus</li>
<li>Dostojevski</li>
<li>Isac Asiimov</li>
<li>Hemmingway</li>
</ul>
</div>
</section>
<div class="quote">
<p>
“Nature loves courage. You make the commitment and nature will respond to that
commitment by removing impossible obstacles. Dream the impossible dream and
the world will not grind you under, it will lift you up.
This is the trick. This is what all these teachers and philosophers
who really counted, who really touched the alchemical gold,
this is what they understood. This is the shamanic dance in
the waterfall. This is how magic is done. By hurling yourself
into the abyss and discovering it's a feather bed.”
<br/>
― Terence McKenna
</p>
</div>
</div>
<div class="right">
<h3>Corner of Cool</h3>
<figure>
<img alt="cool gif" src="/img/gif/2.gif"/>
<figcaption><i><small>Space Thing</small></i></figcaption>
</figure>
</div>
</div>
{% endblock content %}
|