aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/home.html
blob: 70cd2cc83e0f05a85968a0781bf10628474125db (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
28
29
30
31
32
33
34
{% extends "base.html" %}

{# Define what html head we include #}
{% block head %}
    {% with type='home' %}
    {% include "components/html_head.html" %}
    {% endwith %}
{% endblock head %}


{% block wrapped %}
    <div class="navigation">
        {% include "components/link_generator.html" %}
    </div>
    
    {% with title_type='title' %} {% include "components/title_text.html" %} {% endwith %}
    {% include "components/super_gay.html" %}

    <p>
        <b>Hi – </b>Welcome to my dusty internet hangout place.
    </p>
    <p>
        My name is <b>Katharina Fey</b> and I'm a software developer from Berlin. 
        I like taking photos, writing stories and starting way too many personal projects.
    </p>

    <div class="icons">
        <a href="https://twitter.com/spacekookie"><h1 id="twitter"><i class="fa fa-twitter"></i> Twitter</h1></a>
        <a href="https://github.com/spacekookie"><h1 id="github"><i class="fa fa-github"></i> Github</h1></a>
        <a href="https://spacekookie.de/kookie.txt"><h1 id="keys"><i class="fa fa-key"></i> Keys</h1></a>
    </div>

    <p>To get in touch with me, you can also send an e-mail to <a href="mailto:kookie@spacekookie.de" id="email"><b>kookie@spacekookie.de</b></a></p>
{% endblock %}