aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/home.html
blob: 3199d9c05d1baf87577ff64f460f56853626aad5 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!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">
        <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 -->
      <div class="colours">
        <div class="colour colour1"></div>
        <div class="colour colour2"></div>
        <div class="colour colour3"></div>
        <div class="colour colour4"></div>
        <div class="colour colour5"></div>
        <div class="colour colour6"></div>
        <div class="colour colour7"></div>
        <div class="colour colour8"></div>
        <div class="colour colour9"></div>
        <div class="colour colour10"></div>
        <div class="colour colour11"></div>
        <div class="colour colour12"></div>
        <div class="colour colour13"></div>
        <div class="colour colour14"></div>
        <div class="colour colour15"></div>
      </div>

      <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>

    </div>

  </body>
</html>