codereview/templates/layouts/default.html

24 lines
727 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">
{% block navigation %}
{% endblock %}
</div>
<div class="content">
{% block content %}
This space intentionally left blank.
{% endblock %}
</div>
</div>
</body>
</html>