website/templates/contact.html

12 lines
306 B
HTML
Raw Normal View History

2021-06-01 23:15:46 +02:00
{% extends "template.html" %}
{% block title %}Hello, this is my {% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<div class="contact">
2022-05-31 00:19:36 +02:00
<p>My address is <b>mail at stefan.works</b></p>
2021-06-01 23:15:46 +02:00
<p>If there's something on your heart write me an email :)</p>
</div>
{% endblock %}