plchweb/base_app/templates/index.html
2021-08-16 15:55:33 +02:00

26 lines
731 B
HTML

{% extends "layout.html" %}
{% load static %}
{% 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>
<h3> Cryptography </h3>
<h3> Ethical software </h3>
<h3> </h3>
<ul>
<li> some fucking list </li>
</ul>
</div>
{% endblock %}