Texts edited, projects redesigned, posts temporarily removed, pkmples project added and more
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 19s
Build Zola Website / build (pull_request) Successful in 15s

This commit is contained in:
2024-02-23 03:06:08 +01:00
parent 2e25a00637
commit 9c4bfc84ff
14 changed files with 76 additions and 108 deletions

View File

@ -6,18 +6,6 @@
{% 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>
{{ page.content | safe }}
</section>
{% endblock content %}

View File

@ -64,8 +64,8 @@
</footer>
<script>
console.log("pls don't judge me by the source code you can see here, I'm just an ordinary backend developer trying to make a frontend:))")
console.log("but I heard that a cool frontend developer works for https://fofrweb.com")
console.log("I heard that a cool frontend developer works for https://fofrweb.com")
</script>
</body>
</html>

View File

@ -1,12 +0,0 @@
{% extends "base.html" %}
{% block styles %}
<link rel="stylesheet" href="/console.css">
{% endblock styles %}
{% block content %}
<section class="console content" >
</section>
<textarea class="mobile-input" style="display: none" autofocus></textarea>
<script src="/js/console.js" defer></script>
{% endblock content %}

View File

@ -1,20 +1,11 @@
{% extends "base.html" %}
{% block styles %}
<style>
.at {
height: 1rem;
}
</style>
{% endblock styles %}
{% block content %}
<section class="home">
<section>
<p>Filip Rojek &ltfilip<img src="/img/at.svg" alt=" (at) " class="at">filiprojek.cz&gt</p>
<p>Filip Rojek &ltfilip@filiprojek.cz&gt</p>
<br>
<p>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>
<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>
@ -32,3 +23,4 @@
</section>
{% endblock content %}

View File

@ -5,7 +5,8 @@
{% endblock styles %}
{% block content %}
<section class="project-wrapper flex-row">
<section class="project-wrapper flex-col">
<!--
<section class="left-bar flex-col">
<h2>Projects</h2>
{% set section = get_section(path=page.ancestors | last) %}
@ -13,9 +14,13 @@
<a href="{{ project.permalink }}">{{project.title}}</a>
{% endfor %}
</section>
-->
<section class="project-full">
{{ page.content | safe }}
</section>
<h2>{{ page.title }}</h2>
<div>
{{ page.content | safe }}
</div>
<a href="/projects">Back to list of projects</a>
</section>
{% endblock content %}

View File

@ -4,7 +4,6 @@
<link rel="stylesheet" href="/project_list.css">
{% endblock styles %}
{% block content %}
<section class="project-list content">
<h1>My Projects</h1>
@ -26,3 +25,4 @@
{% endfor %}
</section>
{% endblock content %}