codereview/templates/layouts/default.html
2010-11-19 00:12:29 -05:00

22 lines
657 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<link rel="stylesheet" href="/media/default.css" />
<title>{% block title %}CodeReview{% endblock %}</title>
</head>
<body>
<div id="container">
<div class="header">
<h1><a href="{% url codereview.dashboard.views.index %}">CodeReview</a></title>
</div>
<div class="navigation">
</div>
<div class="content">
{% block content %}
This space intentionally left blank.
{% endblock %}
</div>
</div>
</body>
</html>