17 lines
952 B
HTML
17 lines
952 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>
|
||
|
|
||
|
<p>My name is Filip Rojek. I am 20 years old and I study in Prague. My journey into the world of coding started at IT high school. Now I am studying IT at Charles University.</p>
|
||
|
<p>My coding adventure took me from student collaboration on projects like Fofrweb, where we created applications like FofrMess or FofrTasks - realtime web applications built using `Node.js` and `Vue.js`.</p>
|
||
|
<p>I now work as a Linux engineer at IS Media. Most of my work involves Debian-based systems - desktops and servers. I have a lot of experience with other distributions as well. For example, I use `Void Linux` or `Gentoo` on my personal workstations. At Fofrweb we used `RHEL` based distributions like `Cent OS` or later `Rocky Linux`.</p>
|
||
|
</section>
|
||
|
{% endblock content %}
|
||
|
|