dr.botzo/templates/base.html

34 lines
1.0 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
{% load url from future %}
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>{% load static %}
<title>{% block title %}{% endblock %} - dr.botzo</title>
<link href="{% get_static_prefix %}css/core.css" rel="stylesheet" type='text/css' />
{% block extra_media %}{% endblock %}
</head>
<body>
<div id="mainwrapper">
<div id="body">
{% if messages %}
<div id="messages">
<ul class="messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
<div id="content"><div class="inner">
{% block content %}{% endblock %}
</div></div>
</div>
</div>
</body>
</html>
<!--
vi:tabstop=4:expandtab:autoindent
-->