2013-06-24 02:17:08 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
2013-09-24 18:43:16 +02:00
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
2014-01-19 13:27:17 +01:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2015-01-23 20:34:52 +01:00
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
2013-06-24 02:17:08 +02:00
< meta name = "description" content = "" >
< meta name = "author" content = "" >
2014-03-25 08:30:04 +01:00
< link rel = "icon" href = "../../favicon.ico" >
2013-06-24 02:17:08 +02:00
2013-07-21 08:17:01 +02:00
< title > Sticky Footer Navbar Template for Bootstrap< / title >
2013-06-24 02:17:08 +02:00
<!-- Bootstrap core CSS -->
2014-01-01 15:29:13 +01:00
< link href = "../../dist/css/bootstrap.min.css" rel = "stylesheet" >
2013-06-24 02:17:08 +02:00
<!-- Custom styles for this template -->
2013-07-21 08:30:08 +02:00
< link href = "sticky-footer-navbar.css" rel = "stylesheet" >
2013-08-18 08:28:52 +02:00
2014-04-25 00:35:05 +02:00
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
2014-01-01 15:29:13 +01:00
<!-- [if lt IE 9]><script src="../../assets/js/ie8 - responsive - file - warning.js"></script><![endif] -->
2014-04-25 00:35:05 +02:00
< script src = "../../assets/js/ie-emulation-modes-warning.js" > < / script >
2013-10-18 03:39:03 +02:00
2014-10-23 08:11:03 +02:00
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
2013-08-18 08:28:52 +02:00
<!-- [if lt IE 9]>
2014-05-10 08:22:43 +02:00
< script src = "https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js" > < / script >
2014-04-21 18:12:43 +02:00
< script src = "https://oss.maxcdn.com/respond/1.4.2/respond.min.js" > < / script >
2013-08-18 08:28:52 +02:00
<![endif]-->
2013-06-24 02:17:08 +02:00
< / head >
< body >
2014-02-04 13:56:42 +01:00
<!-- Fixed navbar -->
2014-11-14 02:44:09 +01:00
< nav class = "navbar navbar-default navbar-fixed-top" >
2014-02-04 13:56:42 +01:00
< div class = "container" >
< div class = "navbar-header" >
2014-07-15 12:39:27 +02:00
< button type = "button" class = "navbar-toggle collapsed" data-toggle = "collapse" data-target = "#navbar" aria-expanded = "false" aria-controls = "navbar" >
2014-02-04 13:56:42 +01:00
< span class = "sr-only" > Toggle navigation< / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< / button >
< a class = "navbar-brand" href = "#" > Project name< / a >
2013-06-24 02:17:08 +02:00
< / div >
2014-07-15 12:39:27 +02:00
< div id = "navbar" class = "collapse navbar-collapse" >
2014-02-04 13:56:42 +01:00
< ul class = "nav navbar-nav" >
< li class = "active" > < a href = "#" > Home< / a > < / li >
< li > < a href = "#about" > About< / a > < / li >
< li > < a href = "#contact" > Contact< / a > < / li >
< li class = "dropdown" >
2014-11-12 00:52:52 +01:00
< a href = "#" class = "dropdown-toggle" data-toggle = "dropdown" role = "button" aria-expanded = "false" > Dropdown < span class = "caret" > < / span > < / a >
2014-05-29 02:05:54 +02:00
< ul class = "dropdown-menu" role = "menu" >
2014-02-04 13:56:42 +01:00
< li > < a href = "#" > Action< / a > < / li >
< li > < a href = "#" > Another action< / a > < / li >
< li > < a href = "#" > Something else here< / a > < / li >
< li class = "divider" > < / li >
< li class = "dropdown-header" > Nav header< / li >
< li > < a href = "#" > Separated link< / a > < / li >
< li > < a href = "#" > One more separated link< / a > < / li >
< / ul >
< / li >
< / ul >
< / div > <!-- /.nav - collapse -->
2013-06-24 02:17:08 +02:00
< / div >
2014-08-16 03:09:05 +02:00
< / nav >
2013-06-24 02:17:08 +02:00
2014-02-04 13:56:42 +01:00
<!-- Begin page content -->
< div class = "container" >
< div class = "page-header" >
< h1 > Sticky footer with fixed navbar< / h1 >
2013-06-24 02:17:08 +02:00
< / div >
2014-02-04 13:56:42 +01:00
< 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 with < code > padding-top: 60px;< / code > on the < code > body > .container< / code > .< / p >
< p > Back to < a href = "../sticky-footer" > the default sticky footer< / a > minus the navbar.< / p >
2013-06-24 02:17:08 +02:00
< / div >
2014-10-29 21:07:13 +01:00
< footer class = "footer" >
2013-06-24 02:17:08 +02:00
< div class = "container" >
2013-12-01 07:41:43 +01:00
< p class = "text-muted" > Place sticky footer content here.< / p >
2013-06-24 02:17:08 +02:00
< / div >
2014-10-29 21:07:13 +01:00
< / footer >
2013-06-24 02:17:08 +02:00
2013-08-17 21:32:11 +02:00
2013-07-30 19:10:34 +02:00
<!-- Bootstrap core JavaScript
================================================== -->
2013-08-17 21:32:11 +02:00
<!-- Placed at the end of the document so the pages load faster -->
2015-05-10 00:04:14 +02:00
< script src = "https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js" > < / script >
2013-08-16 02:39:37 +02:00
< script src = "../../dist/js/bootstrap.min.js" > < / script >
2014-07-28 02:01:34 +02:00
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
< script src = "../../assets/js/ie10-viewport-bug-workaround.js" > < / script >
2013-06-24 02:17:08 +02:00
< / body >
2013-08-17 21:32:11 +02:00
< / html >