plchweb/base_app/templates/index.html

61 lines
2.3 KiB
HTML
Raw Normal View History

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 %}
<div class="page">
<h1> Homepage </h1>
<h2> Welcome to my website </h2>
<h3> Marcel Plch </h3> <img src="{% static "base_app/img/me.jpg" %}" width="125" />
<p>
I am an open-source enthusiast and love teaching people important stuff
about technology. Currently, I'm trying to start up a small business
based on web development and software support. There should be a
section about this somewhere around here soon™!
</p>
<h3> Open Source </h3>
<p>
I contribute to a few projects.
</p>
<ul>
<li><a href="https://www.python.org/">Python</a></li>
<li><a href="https://getfedora.org/">Fedora Project</a></li>
<li><a href="https://wiki.cachyos.org/">CachyOS</a></li>
<li><a href="https://www.blender.org/">Blender</a></li>
</ul>
<p>
You can check out most of my contributions on <a href="https://github.com/Dormouse759/">my GitHub</a>
</p>
<h3> Cryptography </h3>
<p>
Cryptography is what keeps all of our data secure. My solutions don't
take security lightly. In any way you ever communicate with me, there
either already is some kind of cryptography invloved, or you can
request to validate my message using GPG. <b>Never</b> trust any
message from me that looks important, if it's not cryptographically
easy to verify.
</p>
<h3> Ethical software </h3>
<p>
Ethical software are programs that are written and deployed in such a way
that they have no way of containing any malicious code. All of the software
I recomment and/or provide here on my website are open-source programs.
</p>
<p>
Open-source
is the first fundamental stone of ethical software, it makes the source code
available to all programmers around the world so they can download, modify, redistribute
and check what the software is doing.
</p>
<p>
There are more ways to ensure that your software is ethical and even
<i>proprietary</i> software <b>may</b> be ethical. Read some of my
articles on my website (to be added) to learn what ethical software is.
</p>
<h3> </h3>
</div>
2021-07-19 13:13:27 +00:00
{% endblock %}
2021-07-19 18:56:15 +00:00