aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/base.html
blob: bccf49dd9efc01d8e5ef9bc2802e3c18bf9d5b3a (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
    <head>
        <meta charset="utf-8">
        <!-- <title>{% block title %}{{ SITENAME }}{% endblock title %}</title> -->

        <!-- Load Montserrat, Inconsolata and font-awesome -->
        <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"> 
        <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_gay_override.css" rel="stylesheet">

    </head>
    <body>
        <div class="container">

            <!-- HEADER FOR EVERY PAGE -->
            <div>
                <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>

                <br/>

                <!-- We draw a flattened version of the colour bar navigation -->
                {% include "super_gay.html" %}
            </div>
            <!-- END HEADER FOR EVERY PAGE -->


        </div>

    </body>
</html>


<!-- <!DOCTYPE html> -->
<!-- TEMPLATE: BASE -->

<!-- <html lang="{{ DEFAULT_LANG }}"> -->
    <!-- <head> -->
    <!-- {% block head %} -->

    <!-- <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="description" content="{% block description %}{% endblock description %}">
    <meta name="keywords" content="{% block keywords %}{% endblock keywords %}">
    <link rel="icon" href="{{ SITEURL }}/favicon.ico"> -->

    <!-- Stylesheets -->
    <!-- <link href="https://fonts.googleapis.com/css?family=Inconsolata|Quicksand:300,400|Roboto:300,400&amp;subset=cyrillic,cyrillic-ext" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
    <link href="{{ SITEURL }}/theme/css/bootstrap.min.css" rel="stylesheet">
    <link href="{{ SITEURL }}/theme/css/fonts.css" rel="stylesheet">
    <link href="{{ SITEURL }}/theme/css/nest.css" rel="stylesheet">
    <link href="{{ SITEURL }}/theme/css/pygment.css" rel="stylesheet"> -->

    <!-- <link href="{{ SITEURL }}/theme/css/home.css" rel="stylesheet"> -->
    <!-- /Stylesheets -->

    <!-- {% endblock head %}
    </head>

    <body> -->

      <!-- Header -->
      <!-- {% block headerstyle %}
      {% endblock headerstyle %} -->

      <!-- Static navbar -->
      <!-- <div class="container">
        <div class="header-nav">
          <div class="header-logo">
            <a class="pull-left" href="{{ SITEURL }}/"><img class="mr20" width=192px height=64px src="{{ SITEURL }}{{NEST_HEADER_LOGO or "/images/logo3.png" }}" alt="logo"></a>
          </div>
          <div class="nav pull-right">
            {% for title, link in MENUITEMS %}
              {% 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 %}

            {% if DISPLAY_PAGES_ON_MENU %}
              {% for pg in PAGES %}
                <a class="naughty" href="{{ SITEURL }}/{{ pg.url }}">{{ pg.title }}</a>
              {% endfor %}
            {% endif %}
          </div>
        </div>
      </div> -->
      <!-- /Static navbar -->

      <!-- Header -->
      <!-- {% block header %}
      {% endblock header %} -->
      <!-- /Header -->

    <!-- </div> -->
    <!-- /Header -->


        <!-- Content -->

        <!-- <div class="container">
          <div class="row"> -->

            <!-- This is our content container in all it's glory -->
            <!-- {% block content %}
            {% endblock %} -->

            <!-- Append the navigation box -->
<!--             <div class="col-lg-3 content archive">

                <h3>Categories</h3>
                <ul>
                    {% for cat in categories %}
                    <li><a href="{{ SITEURL }}/{{ cat[0].url }}">{{ cat[0] }}</a> ({{cat[1]|length}})</li>
                    {% endfor %}
                </ul>

                <h3>Tags</h3>
                <ul>
                    {% for tag in tags %}
                    <li><a href="{{ SITEURL }}/{{ tag[0].url }}">{{ tag[0] }}</a> ({{tag[1]|length}})</li>
                    {% endfor %}
                </ul>

                <h3>About the Author</h3>
                <img src="{{ SITEURL }}/theme/img/cat.png">

            </div> -->
        <!-- </div> -->
        <!-- /Content --> 

        <!-- Footer -->
        <!-- <div class="footer gradient-2">
            <div class="container footer-container">
                <div class="row">
                    <div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
                        <div class="footer-title">{{ NEST_SITEMAP_COLUMN_TITLE }}</div>
                        <ul class="list-unstyled">
                            {% for title, link in NEST_SITEMAP_MENU %}
                            <li><a href="{{ SITEURL }}{{ link }}">{{ title }}</a></li>
                            {% endfor %}
                            {% if FEED_ALL_ATOM %}
                            <li><a href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate">{{ NEST_SITEMAP_ATOM_LINK }}</a></li>
                            {% endif %}
                            {% if FEED_ALL_RSS %}
                            <li><a href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}" type="application/rss+xml" rel="alternate">{{ NEST_SITEMAP_RSS_LINK }}</a></li>
                            {% endif %}
                        </ul>
                    </div>
                    <div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
                        {% if SOCIAL %}
                        <div class="footer-title">{{ NEST_SOCIAL_COLUMN_TITLE }}</div>
                        <ul class="list-unstyled">
                            {% for name, link in SOCIAL %}
                            <li><a href="{{ link }}" target="_blank">{{name}}</a></li>
                            {% endfor %}
                        </ul>
                        {% endif %}
                    </div>
                    <div class="col-xs-4 col-sm-4 col-md-4 col-lg-4">
                        {% if LINKS %}
                        <div class="footer-title">{{ NEST_LINKS_COLUMN_TITLE }}</div>
                        <ul class="list-unstyled">
                            {% for name, link in LINKS %}
                            <li><a href="{{ link }}" target="_blank">{{name}}</a></li>
                            {% endfor %}
                        </ul>
                        {% endif %}
                    </div> 
                </div>
            </div>
        </div> -->
        <!-- /Footer -->
    <!-- </body> -->



    <!-- <script src="{{ SITEURL }}/theme/js/random_colour.js"></script> -->
<!-- </html> -->