3.0.0 -> 3.0.1
[bootswatch] / bower_components / bootstrap / examples / sticky-footer-navbar / index.html
1 <!DOCTYPE html>
2 <html lang="en">
3   <head>
4     <meta charset="utf-8">
5     <meta http-equiv="X-UA-Compatible" content="IE=edge">
6     <meta name="viewport" content="width=device-width, initial-scale=1.0">
7     <meta name="description" content="">
8     <meta name="author" content="">
9     <link rel="shortcut icon" href="../../docs-assets/ico/favicon.png">
10
11     <title>Sticky Footer Navbar Template for Bootstrap</title>
12
13     <!-- Bootstrap core CSS -->
14     <link href="../../dist/css/bootstrap.css" rel="stylesheet">
15
16     <!-- Custom styles for this template -->
17     <link href="sticky-footer-navbar.css" rel="stylesheet">
18
19     <!-- Just for debugging purposes. Don't actually copy this line! -->
20     <!--[if lt IE 9]><script src="../../docs-assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
21
22     <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
23     <!--[if lt IE 9]>
24       <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
25       <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
26     <![endif]-->
27   </head>
28
29   <body>
30
31     <!-- Wrap all page content here -->
32     <div id="wrap">
33
34       <!-- Fixed navbar -->
35       <div class="navbar navbar-default navbar-fixed-top">
36         <div class="container">
37           <div class="navbar-header">
38             <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
39               <span class="icon-bar"></span>
40               <span class="icon-bar"></span>
41               <span class="icon-bar"></span>
42             </button>
43             <a class="navbar-brand" href="#">Project name</a>
44           </div>
45           <div class="collapse navbar-collapse">
46             <ul class="nav navbar-nav">
47               <li class="active"><a href="#">Home</a></li>
48               <li><a href="#about">About</a></li>
49               <li><a href="#contact">Contact</a></li>
50               <li class="dropdown">
51                 <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
52                 <ul class="dropdown-menu">
53                   <li><a href="#">Action</a></li>
54                   <li><a href="#">Another action</a></li>
55                   <li><a href="#">Something else here</a></li>
56                   <li class="divider"></li>
57                   <li class="dropdown-header">Nav header</li>
58                   <li><a href="#">Separated link</a></li>
59                   <li><a href="#">One more separated link</a></li>
60                 </ul>
61               </li>
62             </ul>
63           </div><!--/.nav-collapse -->
64         </div>
65       </div>
66
67       <!-- Begin page content -->
68       <div class="container">
69         <div class="page-header">
70           <h1>Sticky footer with fixed navbar</h1>
71         </div>
72         <p class="lead">Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS. A fixed navbar has been added within <code>#wrap</code> with <code>padding-top: 60px;</code> on the <code>.container</code>.</p>
73         <p>Back to <a href="../sticky-footer">the default sticky footer</a> minus the navbar.</p>
74       </div>
75     </div>
76
77     <div id="footer">
78       <div class="container">
79         <p class="text-muted credit">Example courtesy <a href="http://martinbean.co.uk">Martin Bean</a> and <a href="http://ryanfait.com/sticky-footer/">Ryan Fait</a>.</p>
80       </div>
81     </div>
82
83
84     <!-- Bootstrap core JavaScript
85     ================================================== -->
86     <!-- Placed at the end of the document so the pages load faster -->
87     <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
88     <script src="../../dist/js/bootstrap.min.js"></script>
89   </body>
90 </html>