2021-07-19 13:13:27 +00:00
|
|
|
{% extends "layout.html" %}
|
2021-07-19 18:56:15 +00:00
|
|
|
{% load static %}
|
2021-07-19 13:13:27 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2021-07-24 10:41:44 +00:00
|
|
|
<div class="page">
|
|
|
|
|
|
|
|
<h1> Homepage </h1>
|
2022-10-24 21:34:08 +00:00
|
|
|
<h2> UNDER MAINTENANCE </h2>
|
2023-06-22 20:01:44 +00:00
|
|
|
<p> Courses section coming soon™! </p>
|
|
|
|
<p> Use e-mail for now. ;) </p>
|
2023-06-21 05:55:19 +00:00
|
|
|
<h2> Welcome to my website </h2>
|
2023-06-21 13:09:51 +00:00
|
|
|
|
|
|
|
<h3> Marcel Plch </h3>
|
|
|
|
<img src="{% static "base_app/img/me.jpg" %}" width="125" />
|
|
|
|
|
2023-06-21 05:55:19 +00:00
|
|
|
<p>
|
2023-06-22 20:01:44 +00:00
|
|
|
I am an open-source enthusiast that likes to share his knowledge
|
|
|
|
with the world.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<h3> Courses </h3>
|
|
|
|
<p>
|
|
|
|
I offer lessons in
|
|
|
|
<ul>
|
|
|
|
<li>Python;</li>
|
|
|
|
<li>C;</li>
|
|
|
|
<li>Linux;</li>
|
|
|
|
<li>Bash;</li>
|
|
|
|
<li>public speaking;</li>
|
|
|
|
<li>and more.</li>
|
|
|
|
</ul>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Remote sessions sure are a thing.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Own section coming soon, for now, use e-mail at the very bottom
|
|
|
|
of this page!
|
|
|
|
|
|
|
|
Hope to see you soon.
|
|
|
|
|
|
|
|
</p>
|
|
|
|
<h3> Services </h3>
|
|
|
|
<p>
|
|
|
|
Software development, consultations, data management, hosting and tasks
|
|
|
|
related to websites.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
^ Already have that and need a tester?
|
|
|
|
<h3> Other stuff </h3>
|
|
|
|
<p>
|
|
|
|
Check the code at my <a href="https://gitea.plch.xyz">Gitea</a>, this
|
|
|
|
website is completely open and you can use my code for your website!
|
2023-06-21 05:55:19 +00:00
|
|
|
</p>
|
2021-07-24 10:41:44 +00:00
|
|
|
</div>
|
2021-07-19 13:13:27 +00:00
|
|
|
{% endblock %}
|
2021-07-19 18:56:15 +00:00
|
|
|
|