24 lines
727 B
HTML
24 lines
727 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">hello@filiprojek.cz</a></p>
|
|
<p>telegram: <a href="https://t.me/filiprojek">@filiprojek</a></p>
|
|
<p>git: <a href="https://git.filiprojek.cz">Personal git</a></p>
|
|
<p>github: <a href="https://github.com/filiprojek">GitHub</a></p>
|
|
<p>PGP: <a href="#" class="pgpwrap">fc37b989787acf8cbce7c0c2a56a345efe321161</a></p>
|
|
</div>
|
|
</section>
|
|
{% endblock content %}
|