Add responsive features to static sample

This commit is contained in:
Dave Syer
2013-07-30 10:31:19 +01:00
parent 0fee00f0d7
commit 6d76467a66
7 changed files with 58 additions and 27 deletions

6
jquery.min.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -1,30 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<title>Static</title>
<link rel="stylesheet" href="/css/bootstrap.min.css"/>
</head>
<body>
<div class="container">
<div class="navbar">
<div class="navbar-inner">
<a class="brand"
href="https://github.com/SpringSource/spring-boot">
Spring Boot
</a>
<ul class="nav">
<li>
<a href="/">
Home
</a>
</li>
</ul>
</div>
</div>
<h1>Home</h1>
<div>
Some static content
</div>
</div>
</body>
<head>
<title>Static</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="/js/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css"
href="/css/bootstrap-responsive.min.css" />
<script type="text/javascript" src="/js/bootstrap.min.js"></script>
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="https://github.com/SpringSource/spring-boot">
Spring Boot </a> <a class="btn btn-navbar" data-toggle="collapse"
data-target=".nav-collapse"> <span class="icon-bar"></span> <span
class="icon-bar"></span> <span class="icon-bar"></span>
</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="/"> Home </a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<h1>Home</h1>
<div>Some static content</div>
</div>
</body>
</html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long