summaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: 9222fb22dbd1af06133337ea2611885a80090ae0 (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
<!-- -*- Mode: django-html-mumamo -*- -->

<!DOCTYPE html>
<html>
  <head>
    <title>ryuslash | {% block subtitle %}linux and coding{% endblock %}</title>
    <link href="/static/css/main.css" type="text/css" rel="stylesheet" />
    {% block extrastyle %}{% endblock %}
  </head>
  <body>
    <div id="header">
	  <img id="logo" src="/static/img/logo.png" width="100" height="100" />
	  <h1 id="title">
	    <span id="ryu">ryu</span><span id="slash">slash</span>
	  </h1>
    </div>

    <div id="subheader">
      <tt>This might just be my website.</tt>
    </div>

    <div id="container">
      <div id="body">
	    <!-- <div class="clearleft"></div> -->

        <div id="menu">
	      <div class="container">
	        <div class="header">
	          root
	        </div>
	        <a href="/">home</a><br />
	        <a href="/blog/">blog</a><br />
	        <a href="/Projects/">projects</a><br />
	      </div>

	      {% block submenu %}{% endblock %}
	    </div>

        <div id="content">
	      {% block content %}
	      {% endblock %}
	      <div class="clear"></div>
	    </div>
      </div>

      <div id="footer">
	    Created by <a href="http://ryuslash.org">Tom Willemsen</a>

        <div class="emblems">
          <a href="http://www.catb.org/hacker-emblem/">
            <img src="/static/img/hacker.png" alt="hacker emblem" />
          </a>
        </div>
      </div>

    </div>
  </body>
</html>