mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-23 17:40:32 +00:00
19 lines
No EOL
571 B
HTML
19 lines
No EOL
571 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>django-admin2</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<!-- Bootstrap -->
|
|
<link href="{{ STATIC_URL }}themes/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
|
|
</head>
|
|
<body>
|
|
<div class="container-fluid">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
<script src="http://code.jquery.com/jquery.js"></script>
|
|
<script src="{{ STATIC_URL }}themes/bootstrap/js/bootstrap.min.js"></script>
|
|
{% block extrajs %}{% endblock %}
|
|
|
|
</body>
|
|
</html> |