website/templates/contact.html

15 lines
568 B
HTML
Raw Normal View History

2023-06-17 15:58:42 +02:00
{% extends "base.html" %}
{% block content %}
<section class="contact content">
<h1>Contacts</h1>
<div class="contact-list">
<p>email: <a href="mailto:filip@filiprojek.cz">filip@filiprojek.cz</a></p>
<p>telegram: <a href="https://t.me/filiprojek">@filiprojek</a></p>
<p>git: <a href="https://git.filiprojek.cz">https://git.filiprojek.cz</a></p>
<p>github: <a href="https://github.com/filiprojek">https://github.com/filiprojek</a></p>
<p>PGP: <a href="#">fc37b989787acf8cbce7c0c2a56a345efe321161</a></p>
</div>
</section>
{% endblock content %}