32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
{% load staticfiles %}
|
|
<!DOCTYPE html>
|
|
<!--
|
|
This is a starter template page. Use this page to start your new project from
|
|
scratch. This page gets rid of all links and provides the needed markup only.
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
<link rel="stylesheet" href="{% static 'groups/bower_components/bootstrap/dist/css/bootstrap.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'groups/dist/css/AdminLTE.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'groups/dist/css/skins/skin-blue.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'groups/bower_components/layer/theme/default/layer.css' %}">
|
|
|
|
{% block css %} {% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
{% block main %}
|
|
{% endblock %}
|
|
|
|
<script src="{% static 'groups/bower_components/jquery/dist/jquery.min.js' %}"></script>
|
|
<script src="{% static 'groups/bower_components/layer/layer.js' %}"></script>
|
|
|
|
{% block javascripts %}{% endblock %}
|
|
|
|
</body>
|
|
</html>
|