17 lines
546 B
HTML
17 lines
546 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}index{% endblock %}
|
|
|
|
{% block head %}{% endblock %}
|
|
|
|
{% block breadcrumb %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<p><i>...fearlessly conquering the world of backend</i></p>
|
|
<h1>About</h1>
|
|
<p>Hey, I'm Dominic (aka. dergrimm) and am currently a student going to school in Germany.</p>
|
|
<p>
|
|
You can contact me at:
|
|
<a href='mailto:%64o%6Dinic@%64ergr%69mm%2Enet'>dominic@dergrimm.net</a>
|
|
</p>
|
|
{% endblock %}
|