18 lines
365 B
HTML
18 lines
365 B
HTML
{% extends 'layout.html' %}
|
|
|
|
{% set active_page = 'index' %}
|
|
{% set title = '^_^' %}
|
|
|
|
{% block body %}
|
|
|
|
<main class="text">
|
|
<h2>Welcome</h2>
|
|
<p>... to my website!</p>
|
|
|
|
<p>My name is Rupus Reinefjord. I am a Computer Science student at
|
|
KTH Royal Institute of Technology. My passion is programming, technology,
|
|
and music.
|
|
</p>
|
|
</main>
|
|
|
|
{% endblock %}
|