website/templates/about.html
Filip Rojek 2e25a00637
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 18s
Build Zola Website / build (pull_request) Successful in 15s
Fixes: #2 changed gpg key
2024-02-08 09:36:14 +01:00

24 lines
857 B
HTML

{% extends "base.html" %}
{% block styles %}
<link rel="stylesheet" href="/about.css">
{% endblock styles %}
{% block content %}
<section class="about content">
<h2>About me</h2>
{{ page.content | safe }}
</section>
<section class="contact content">
<h1>Contact me</h1>
<div class="contact-list">
<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>
</div>
</section>
{% endblock content %}