blob: cefce37887be7b25f107271a6c6635242253da64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{% extends "base.html" %}
{% block body %}
<h1>Hey, You!</h1>
<p>I am Roman Gräf</p>
<p>I am a programmer!</p>
<p>I do things for you!</p>
<p>As long as it is not webdesign, I will program nearly anything for you</p>
<div class="spacer"></div>
<h1>Projects</h1>
<div class="gallery">
<a href="{{ url_for("projects", project_name="website") }}">
<div class="gallery-element">
This website
</div>
</a>
<div class="gallery-element">
Discord Bots
</div>
<div class="gallery-element">
LOGL
</div>
</div>
{% endblock %}
{% block title %}
Roman Gräf
{% endblock %}
|