website/templates/about.html

24 lines
857 B
HTML
Raw Normal View History

2023-09-20 17:03:40 +02:00
{% extends "base.html" %}
{% block styles %}
<link rel="stylesheet" href="/about.css">
{% endblock styles %}
{% block content %}
<section class="about content">
<h2>About me</h2>
2023-11-19 00:56:48 +01:00
{{ page.content | safe }}
</section>
2023-09-20 17:03:40 +02:00
2023-11-19 00:56:48 +01:00
<section class="contact content">
<h1>Contact me</h1>
<div class="contact-list">
2024-02-08 09:35:07 +01:00
<p>email: <a href="mailto:hello@filiprojek.cz" target="_blank">hello@filiprojek.cz</a></p>
<p>telegram: <a href="https://t.me/filiprojek" target="_blank">@filiprojek</a></p>
<p>git: <a href="https://git.filiprojek.cz" target="_blank">Personal Gitea</a></p>
<p>github: <a href="https://github.com/filiprojek" target="_blank">GitHub</a></p>
<p>PGP: <a href="https://keys.openpgp.org/vks/v1/by-fingerprint/CA3D9BE28315B49164130CD97E65EA58C6075F09" target="_blank">0x7E65EA58C6075F09</a></p>
2023-11-19 00:56:48 +01:00
</div>
2023-09-20 17:03:40 +02:00
</section>
{% endblock content %}