<%@ page contentType="text/html;charset=UTF-8"%>
|
<%@ taglib prefix="sitemesh" uri="http://www.opensymphony.com/sitemesh/decorator" %>
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
<c:set var="ctx" value="${pageContext.request.contextPath}" />
|
|
<!DOCTYPE html>
|
<html lang="zh-CN">
|
<head>
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
<meta http-equiv="Cache-Control" content="no-store" />
|
<meta http-equiv="Pragma" content="no-cache" />
|
<meta http-equiv="Expires" content="0" />
|
<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 type="image/x-icon" href="${ctx}/static/images/favicon.ico" rel="shortcut icon">
|
|
<title><sitemesh:title/> - 玻璃生产管理系统</title>
|
|
<link rel="stylesheet" href="${ctx}/static/AdminLTE/bower_components/bootstrap/dist/css/bootstrap.min.css">
|
<!-- Font Awesome -->
|
<link rel="stylesheet" href="${ctx}/static/AdminLTE/bower_components/font-awesome/css/font-awesome.min.css">
|
<!-- Ionicons -->
|
<link rel="stylesheet" href="${ctx}/static/AdminLTE/bower_components/Ionicons/css/ionicons.min.css">
|
<!-- Theme style -->
|
<link rel="stylesheet" href="${ctx}/static/AdminLTE/dist/css/AdminLTE.min.css">
|
<!-- AdminLTE Skins. We have chosen the skin-blue for this starter
|
page. However, you can choose any other skin. Make sure you
|
apply the skin class to the body tag so the changes take effect. -->
|
<link rel="stylesheet" href="${ctx}/static/AdminLTE/dist/css/skins/skin-blue.min.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]-->
|
|
<sitemesh:head/>
|
</head>
|
<!--
|
BODY TAG OPTIONS:
|
=================
|
Apply one or more of the following classes to get the
|
desired effect
|
|---------------------------------------------------------|
|
| SKINS | skin-blue |
|
| | skin-black |
|
| | skin-purple |
|
| | skin-yellow |
|
| | skin-red |
|
| | skin-green |
|
|---------------------------------------------------------|
|
|LAYOUT OPTIONS | fixed |
|
| | layout-boxed |
|
| | layout-top-nav |
|
| | sidebar-collapse |
|
| | sidebar-mini |
|
|---------------------------------------------------------|
|
-->
|
<body class="hold-transition skin-blue sidebar-mini">
|
<div class="wrapper">
|
<%@ include file="/WEB-INF/layouts/header.jsp"%>
|
<%@ include file="/WEB-INF/layouts/left.jsp"%>
|
<sitemesh:body/>
|
<%@ include file="/WEB-INF/layouts/footer.jsp"%>
|
</div>
|
|
<!-- REQUIRED JS SCRIPTS -->
|
<!-- Bootstrap 3.3.7 -->
|
<script src="${ctx}/static/AdminLTE/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
|
<!-- AdminLTE App -->
|
<script src="${ctx}/static/AdminLTE/dist/js/adminlte.min.js"></script>
|
</body>
|
</html>
|