mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 19:03:15 +08:00
49 lines
1.7 KiB
Python
49 lines
1.7 KiB
Python
{% load staticfiles %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>{% if system_setup.HeadTitle %}{{ system_setup.HeadTitle }}{% else %}SandBox{% endif %}</title>
|
|
<!-- Tell the browser to be responsive to screen width -->
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
<!-- Bootstrap 3.3.6 -->
|
|
<link rel="stylesheet" href="{% static 'bootstrap/css/bootstrap.min.css' %}">
|
|
<!-- Font Awesome -->
|
|
|
|
<link rel="stylesheet" href="{% static 'dist/css/AdminLTE.min.css' %}">
|
|
<!-- iCheck -->
|
|
<link rel="stylesheet" href="{% static 'plugins/iCheck/square/blue.css' %}">
|
|
|
|
<link rel="stylesheet" href="{% static 'dist/css/myself.css' %}">
|
|
|
|
<!-- 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 class="hold-transition login-page">
|
|
<div class="login-box">
|
|
<div class="login-logo">
|
|
{% if system_setup.loginTitle %}{{ system_setup.loginTitle }}{% else %}沙盒协同办公平台{% endif %}
|
|
</div>
|
|
{% block user-content %}
|
|
|
|
{% endblock %}
|
|
</div>
|
|
<!-- /.login-box -->
|
|
|
|
|
|
<!-- jQuery 2.2.3 -->
|
|
<script src="{% static 'plugins/jQuery/jquery-2.2.3.min.js' %}"></script>
|
|
<!-- Bootstrap 3.3.6 -->
|
|
<script src="{% static 'bootstrap/js/bootstrap.min.js' %}"></script>
|
|
<!-- iCheck -->
|
|
{% block script %}
|
|
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|