mirror of
https://github.com/correl/codereview.git
synced 2024-11-24 03:00:07 +00:00
27 lines
997 B
HTML
27 lines
997 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf8">
|
|
<link rel="stylesheet" href="/media/default.css" />
|
|
<link rel="stylesheet" href="/media/css/smoothness/jquery-ui-1.8.6.custom.css" />
|
|
<script type="text/javascript" src="/media/js/jquery-1.4.2.min.js"></script>
|
|
<script type="text/javascript" src="/media/js/jquery-ui-1.8.6.custom.min.js"></script>
|
|
<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>
|