aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/home.html
blob: 50991e6f71e5544afb64d5e52b9b703882ee80e5 (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
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
  <head>
    <meta charset="utf-8">

    <title{{ SITENAME }}</title>

    <!-- Fonts -->
    <!-- <link href="https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500|Raleway:200,200i,300,300i,400,400i,500" rel="stylesheet">  -->
    <link href="https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500;subset=cyrillic,latin-ext" rel="stylesheet"> 
    <link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet"> 

    <!-- Include font awesome -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

    <!-- Load bootstrap, then my own CSS -->
    <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">
    <!-- /Stylesheets -->

  </head>

  <body>

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

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

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