reorganizing project directories, part 1
This commit is contained in:
33
dr_botzo/templates/base.html
Normal file
33
dr_botzo/templates/base.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<!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
|
||||
-->
|
||||
Reference in New Issue
Block a user