aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/home.html
blob: d9dd0e9a04826e24e979b75598997904877c882a (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
    <head>
        <meta charset="utf-8">
        <title>{{ SITENAME }}</title>

        <!-- Load bootstrap, then my own CSS -->
        <!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> -->
        <!-- <link href="{{ SITEURL }}/theme/css/bootstrap.min.css" rel="stylesheet"> -->
        <link href="{{ SITEURL }}/theme/css/crumbs.css" rel="stylesheet">
       <link href="{{ SITEURL }}/theme/css/cr_title.css" rel="stylesheet">

        <!-- Fonts -->
        <link href="https://fonts.googleapis.com/css?family=Montserrat:200,300,500" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet"> 
        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
    </head>

    <body class="home">

        <!-- Outer bootstrap container -->
        <div class="container">

            <!-- Add dynamic header -->
            <div class="navigation">

                <!-- Loop through all pages -->
                {% for title, link in MENUITEMS %}
                    <!-- Do magic with http/https -->
                    {% if 'http://' in link or 'https://' in link %}
                        <a class="nav-item" href="{{ link }}">{{ title }} </a>
                    {% else %}
                        <a class="nav-item" href="{{ SITEURL }}{{ link }}">{{ title }} </a>
                    {% endif %}
                {% endfor %}
            </div>
            <!-- /Static navbar -->

            <!-- <hr/> -->

            <!-- The page title -->
            <div class="title" title="Inconsolata is my favourite monospace font, after all...">
                <h1>
                    <span id="t-color-red"><b># ~ </b></span>
                    <span id="t-color-org">Fun</span>
                    <span id="t-color-ylw">Memory</span>
                    <span id="t-color-grn">Violations</span>
                    <span class="cursor" id="cursor"></span>
                </h1>
            </div>

        <!-- Cool colour bar, yo -->
        {% include "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>
        <!-- <p>(My RFC2549 complient Prime MTU is currently out of comission)</p> -->

        </div>
    </body>
</html>