551212a80fe8da466ff903b35d1069bf8f029d64
[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 name="viewport" content="width=device-width, initial-scale=1.0">
6     <meta name="description" content="">
7     <meta name="author" content="">
8     <link rel="shortcut icon" href="../../assets/ico/favicon.png">
9
10     <title>Sticky Footer Navbar Template for Bootstrap</title>
11
12     <!-- Bootstrap core CSS -->
13     <link href="../../dist/css/bootstrap.css" rel="stylesheet">
14
15     <!-- Custom styles for this template -->
16     <link href="sticky-footer-navbar.css" rel="stylesheet">
17
18     <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
19     <!--[if lt IE 9]>
20       <script src="../../assets/js/html5shiv.js"></script>
21       <script src="../../assets/js/respond.min.js"></script>
22     <![endif]-->
23   </head>
24
25   <body>
26
27     <!-- Wrap all page content here -->
28     <div id="wrap">
29
30       <!-- Fixed navbar -->
31       <div class="navbar navbar-default navbar-fixed-top">
32         <div class="container">
33           <div class="navbar-header">
34             <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
35               <span class="icon-bar"></span>
36               <span class="icon-bar"></span>
37               <span class="icon-bar"></span>
38             </button>
39             <a class="navbar-brand" href="#">Project name</a>
40           </div>
41           <div class="collapse navbar-collapse">
42             <ul class="nav navbar-nav">
43               <li class="active"><a href="#">Home</a></li>
44               <li><a href="#about">About</a></li>
45               <li><a href="#contact">Contact</a></li>
46               <li class="dropdown">
47                 <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
48                 <ul class="dropdown-menu">
49                   <li><a href="#">Action</a></li>
50                   <li><a href="#">Another action</a></li>
51                   <li><a href="#">Something else here</a></li>
52                   <li class="divider"></li>
53                   <li class="dropdown-header">Nav header</li>
54                   <li><a href="#">Separated link</a></li>
55                   <li><a href="#">One more separated link</a></li>
56                 </ul>
57               </li>
58             </ul>
59           </div><!--/.nav-collapse -->
60         </div>
61       </div>
62
63       <!-- Begin page content -->
64       <div class="container">
65         <div class="page-header">
66           <h1>Sticky footer with fixed navbar</h1>
67         </div>
68         <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>
69         <p>Back to <a href="../sticky-footer">the default sticky footer</a> minus the navbar.</p>
70       </div>
71     </div>
72
73     <div id="footer">
74       <div class="container">
75         <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>
76       </div>
77     </div>
78
79
80     <!-- Bootstrap core JavaScript
81     ================================================== -->
82     <!-- Placed at the end of the document so the pages load faster -->
83     <script src="../../assets/js/jquery.js"></script>
84     <script src="../../dist/js/bootstrap.min.js"></script>
85   </body>
86 </html>