legacy-dotfiles/templates/base.html

61 lines
1.5 KiB
HTML

<!-- -*- 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 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.djangoproject.com">
<img src="/static/img/django.gif" alt="django emblem" />
</a>
<a href="http://www.catb.org/hacker-emblem/">
<img src="/static/img/hacker.png" alt="hacker emblem" />
</a>
</div>
</div>
</div>
</body>
</html>