12 lines
306 B
HTML
12 lines
306 B
HTML
{% extends "template.html" %}
|
|
{% block title %}Hello, this is my {% endblock %}
|
|
{% block head %}
|
|
{{ super() }}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="contact">
|
|
<p>My address is <b>mail at stefan.works</b></p>
|
|
<p>If there's something on your heart write me an email :)</p>
|
|
</div>
|
|
{% endblock %}
|