mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 02:43:14 +08:00
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
{% 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 'bootstrap/css/bootstrap.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'dist/css/AdminLTE.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'dist/css/myself.css' %}">
|
|
<link rel="stylesheet" href="{% static 'dist/css/skins/skin-blue.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'js/plugins/layer/skin/layer.css' %}">
|
|
|
|
{% block css %} {% endblock %}
|
|
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
{% block main %}
|
|
{% endblock %}
|
|
|
|
<script src="{% static 'plugins/jQuery/jquery-2.2.3.min.js' %}"></script>
|
|
<script src="{% static 'js/plugins/layer/layer.js' %}"></script>
|
|
|
|
{% block javascripts %}{% endblock %}
|
|
|
|
</body>
|
|
</html>
|