aboutsummaryrefslogtreecommitdiff
path: root/templates/home.html
blob: 5b278754d010aaac031e0333e75162791674390a (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
100
101
102
103
104
105
106
107
108
109
110
111
{% extends "base.html" %}

{% block title %}{{ page.title }} - {{ super() }}{% endblock title %}
{% block description %}{{ page.content|striptags|truncate(200)|escape }}{% endblock description %}

{% block headerstyle %}
    {% if page.illustration %}
    <div class="header-container" style="background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('{{ SITEURL }}/images/{{ page.illustration }}'); background-position: center; ">
    {% elif NEST_HEADER_IMAGES %}
    <div class="header-container" style="background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('{{ SITEURL }}/images/{{ NEST_HEADER_IMAGES }}'); background-position: center; ">
    {% else %}
    <div class="header-container gradient">
    {% endif %}
{% endblock headerstyle %}

{% block header %}
    <div class="container header-wrapper">
        <div class="row">
              <div class="col-lg-12">
                  <div class="header-content">
                      <h1 class="header-title text-uppercase">{{ page.title }}</h1>
                      <div class="header-underline"></div>
                  </div>
              </div>
        </div>
    </div>
{% endblock header %}


{% block content %}
<div class="home">
    <div class="container content color_shit">
      <!-- Displays the default content from the home page -->
      {{ page.content }}
      
      <!-- Bootstrap rid container thingies with mobile views -->
      <div class="row color_shit">
        <div class="col-md-4 col-xs-12">
          <h2><a href="pgp/spacekookie-on-the-tubes.txt">KEYS</a></h2>
     <pre class="col">
 _____
/ PGP \__
\_____/o \
      \_ /
       <|
       <|
       <|
       `
     </pre>
        </div>
        <div class="col-md-4 col-xs-12">
          <h2><a href="https://github.com/spacekookie">CODE</a></h2>
          <pre class="col">
    ___________________  
   /   ______________  \
  |   / unsigned int |  |
  |   | number_fans()|  |
  |   | {            |  |
  |   \______________/  |
  |  /|\ q  oo ===== o  | 
   \___________________/ 
     !_______________!   
          </pre>
        </div>
        <div class="col-md-4 col-xs-12">
          <h2><a href="">LONELY ROBOT</a></h2>
					<pre class="col">


                   `
                   `
                   `
          :        `
         `         .
         @         .
         .         .
                   .
        '          ,
          .,``     ,
       :           ,
       :  ';#;     ,
      .  +`.    '  :
      @'  #'       :
     ;#:`,   ,     ;
     @#@@@@@       ;
     ';+,@'+,      ;
    . `@+@;;.   `  ;
    @  :@#@;@  .   :
    ,   :+@@@ '@   ;
   +      '@@ #:'  +
   @     @+@# ',:  +
  .`     @@@@+@@@  #
  @      `@++ :''` #
 `:       @.@+ @#  #
 :  .     @@@@ .   #
 ,        @@@#@ `# '
 `      , @.@..   ',
 +     +@@@@@@@    ,
   #@@@@@@@@@@:  .  
  @ ,@@@@@@@@@#`    
,@@@@@` #@@@+`      
   @@@@@@@@         
   '.  ,#.          

Isn't that cryptic...
          </pre>
        </div>
      </div>
    </div>
{% endblock %}
</div>