summaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: 6c451a851475db741f1a6e9d439ea7561c0f2792 (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
<!-- -*- 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="container">
      <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="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">
	    Copyright &copy; 2011 Tom Willemsen
      </div>

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