27 lines
1008 B
HTML
27 lines
1008 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
<section class="home">
|
|
<section>
|
|
<p>Filip Rojek <filip@filiprojek.cz></p>
|
|
<br>
|
|
<p>Linux sysadmin, backend node.js & php developer <a href="https://www.fofrweb.com/" target="_blank">@fofrweb</a>,<br> GNU/Linux <a href="http://voidlinux.org" target="_blank">Void</a> user, student and coffee enthusiast<span class="underscore">_</span><p>
|
|
<br>
|
|
<p>PGP: <a href="https://keys.openpgp.org/vks/v1/by-fingerprint/CA3D9BE28315B49164130CD97E65EA58C6075F09" target="_blank">0x7E65EA58C6075F09</a></p>
|
|
<br>
|
|
<p><a href="https://git.filiprojek.cz/fr" target="_blank">Git</a> <a href="https://t.me/filiprojek" target="_blank">Telegram</a> <a href="#" id="pgpmobile" title="copy pgp to clipboard">PGP</a></p>
|
|
</section>
|
|
|
|
<script>
|
|
const _ = document.querySelector(".underscore")
|
|
let b = false
|
|
setInterval(() => {
|
|
b ? _.style.visibility = "visible" : _.style.visibility = "hidden"
|
|
b = !b
|
|
}, 500)
|
|
</script>
|
|
</section>
|
|
|
|
{% endblock content %}
|
|
|