summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 1d0d7535b49810ff927964abf08db7d376c0cd71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}
{% block body %}
    <h1>Hey, You!</h1>
    <p>I am Roman Gr&auml;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>
    <p><a href="{{ url_for('list_all_projects') }}">All projects</a> </p>
    {% include "gallery.html" %}
{% endblock %}
{% block title %}
    Roman Gr&auml;f
{% endblock %}