2013-05-18 10:49:08 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>django-admin2</title>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<!-- Bootstrap -->
|
2013-05-18 11:57:22 +00:00
|
|
|
<link href="{{ STATIC_URL }}themes/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
|
2013-05-18 10:49:08 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="container-fluid">
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script src="http://code.jquery.com/jquery.js"></script>
|
2013-05-18 11:57:22 +00:00
|
|
|
<script src="{{ STATIC_URL }}themes/bootstrap/js/bootstrap.min.js"></script>
|
2013-05-18 10:49:08 +00:00
|
|
|
{% block extrajs %}{% endblock %}
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|