aboutsummaryrefslogtreecommitdiffstats
path: root/SOB/templates/base.html
blob: 33f97bb07acc6743d1fef79ef137ee75a0e202e9 (plain) (blame)
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
<!DOCTYPE html>

<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="description"
          content="Main page.">
    <meta name="keywords"
          content="sassafrass">
    <meta name="author"
          content="YOU">
    <link rel="stylesheet"
          type="text/css"
          href="{{ SITEURL }}/theme/css/main.css">
    <!--<link rel="icon"
          type="image/png"
          href=".png">  -->
    <title>
	{% block title %}{{ SITENAME }}
	{%endblock%}
    </title>
  </head>

  <body>
    <div id="container">
      <div id="topspacer">
      </div>
      <div id="header">
        <h1 style="text-align: center"><a href="{{ SITEURL }}">{{ SITENAME }}</a></h1>
      </div>
      <div id="nav">
        <ul>
	{% for title, link in MENUITEMS %}
          <li><a href="{{ link }}">{{ title }}</a></li>
	{% endfor %}

	{% if DISPLAY_PAGES_ON_MENU %}
		{% for page in PAGES %}
          <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
		{% endfor %}
	{% endif %}
        </ul>
      </div>
      <div id="content">
        <p>
Return to <a href="http://somewhere32132132.com">somewhere32132132.com</a>
        </p>
      </div>

	{% block content %}
	{% endblock %}


      <div id="content">
        <ul>
          <li><a href="{{ SITEURL }}/archives.html">Archives</a>
          <li><a href="{{ SITEURL }}/tags.html">Tags</a>
        </ul>
      </div>
	{% if categories %}
      <div id="content">		
        <h3 style="text-align: center">Categories</h3>
        <p>
		{% for cat, null in categories %}
          <a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a>, 
		{% endfor %}
        </p>
      </div>
	{% endif %}

	{% if LINKS %}
      <div id="content">
        <h5>Links</h5>
        <ul>
            {% for name, link in LINKS %}
          <li><a href="{{ link }}">{{ name }}</a></li>
            {% endfor %}
        </ul>
      </div>
	{% endif %}
		
	{% if SOCIAL %}
      <div id="content">
        <h5>Social</h5>
        <ul>
		{% for name, link in SOCIAL %}
          <li><a href="{{ link }}">{{ name }}</a></li>
		{% endfor %}
        </ul>
      </div>
	{% endif %}
        {% include "disclaimer.html" %}
      <div id="bottomspacer">
      </div>
    </div>
  </body>
</html>