mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 02:43:14 +08:00
112 lines
3.6 KiB
Python
112 lines
3.6 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">
|
||
<title>SandBoxMP</title>
|
||
<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 'plugins/font-awesome/css/font-awesome.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' %}">
|
||
|
||
{% block css %} {% endblock %}
|
||
|
||
<!--[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 skin-blue sidebar-mini">
|
||
<div class="wrapper">
|
||
|
||
{% block main %}
|
||
|
||
|
||
{% endblock %}
|
||
|
||
<!-- Control Sidebar -->
|
||
<aside class="control-sidebar control-sidebar-dark">
|
||
<!-- Create the tabs -->
|
||
<ul class="nav nav-tabs nav-justified control-sidebar-tabs">
|
||
<li class="active"><a href="#control-sidebar-home-tab" data-toggle="tab"><i class="fa fa-home"></i></a></li>
|
||
<li><a href="#control-sidebar-settings-tab" data-toggle="tab"><i class="fa fa-gears"></i></a></li>
|
||
</ul>
|
||
<!-- Tab panes -->
|
||
<div class="tab-content">
|
||
<!-- Home tab content -->
|
||
<div class="tab-pane active" id="control-sidebar-home-tab">
|
||
<h3 class="control-sidebar-heading">备用空间</h3>
|
||
<ul class="control-sidebar-menu">
|
||
<li>
|
||
<a href="javascript:;">
|
||
<i class="menu-icon fa fa-birthday-cake bg-red"></i>
|
||
|
||
<div class="menu-info">
|
||
<h4 class="control-sidebar-subheading">SandBox</h4>
|
||
|
||
<p>沙盒运维管理平台</p>
|
||
</div>
|
||
</a>
|
||
</li>
|
||
<li>
|
||
<a href="javascript:;">
|
||
<div class="menu-info">
|
||
<p>乘风破浪前程广,鼎立创新步步高</p>
|
||
</div>
|
||
</a>
|
||
</li>
|
||
</ul>
|
||
<!-- /.control-sidebar-menu -->
|
||
|
||
<!-- /.control-sidebar-menu -->
|
||
|
||
</div>
|
||
<!-- /.tab-pane -->
|
||
<!-- Stats tab content -->
|
||
<div class="tab-pane" id="control-sidebar-stats-tab">Stats Tab Content</div>
|
||
<!-- /.tab-pane -->
|
||
<!-- Settings tab content -->
|
||
<div class="tab-pane" id="control-sidebar-settings-tab">
|
||
<form method="post">
|
||
<h3 class="control-sidebar-heading">江苏沙盒科技</h3>
|
||
|
||
<div class="form-group">
|
||
<p>
|
||
乘风破浪前程广,鼎立创新步步高
|
||
</p>
|
||
</div>
|
||
<!-- /.form-group -->
|
||
</form>
|
||
</div>
|
||
<!-- /.tab-pane -->
|
||
</div>
|
||
</aside>
|
||
<!-- /.control-sidebar -->
|
||
<!-- Add the sidebar's background. This div must be placed
|
||
immediately after the control sidebar -->
|
||
<div class="control-sidebar-bg"></div>
|
||
</div>
|
||
<!-- ./wrapper -->
|
||
|
||
<!-- REQUIRED JS SCRIPTS -->
|
||
|
||
<!-- 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>
|
||
<!-- AdminLTE App -->
|
||
<script src="{% static 'dist/js/app.min.js' %}"></script>
|
||
|
||
{% block javascripts %}{% endblock %}
|
||
|
||
</body>
|
||
</html>
|