Skip to content

Commit

Permalink
update home.jsp
Browse files Browse the repository at this point in the history
  • Loading branch information
leelance committed Jul 5, 2014
1 parent cb13bf0 commit 44d282e
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,4 @@ local.properties

# Locally stored "Eclipse launch configurations"
*.launch
/spring-boot-samples
4 changes: 1 addition & 3 deletions spring-boot-samples/src/main/webapp/WEB-INF/views/login.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>用户登录</title>
</head>
Expand Down
24 changes: 21 additions & 3 deletions spring-boot-samples/src/main/webapp/WEB-INF/views/user/home.jsp
Original file line number Diff line number Diff line change
@@ -1,16 +1,34 @@
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<html lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>项目管理</title>

<!-- CSS件 -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/home.css">
</head>
<body>

<!-- header -->
<jsp:include page="common/header.jsp"></jsp:include>
<!-- content -->
<div class="container-fluid">
<div class="row">
<!-- left -->
<div class="col-sm-3 col-md-2 sidebar">
<jsp:include page="common/home-left.jsp"></jsp:include>
</div>

<!-- center content -->
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
center
</div>
</div>
</div>

<script src="http://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
Expand Down

0 comments on commit 44d282e

Please sign in to comment.