index.html 3.59 KB
Newer Older
1
2
3
4
<!DOCTYPE html>
<html lang="en">
  <head>
    <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, shrink-to-fit=no">
7
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
8
9
    <meta name="description" content="">
    <meta name="author" content="">
10
    <link rel="icon" href="../../favicon.ico">
11

Nicole's avatar
Nicole committed
12
    <title>Sticky Footer Navbar Template for Bootstrap</title>
13
14

    <!-- Bootstrap core CSS -->
wangsai's avatar
wangsai committed
15
    <link href="../../dist/css/bootstrap.min.css" rel="stylesheet">
16
17

    <!-- Custom styles for this template -->
Nicole's avatar
Nicole committed
18
    <link href="sticky-footer-navbar.css" rel="stylesheet">
19
20
21
22
  </head>

  <body>

23
    <!-- Fixed navbar -->
24
25
    <div class="pos-f-t">
      <div class="collapse" id="navbar-header">
26
        <div class="container bg-inverse p-a-1">
27
28
          <h3>Collapsed content</h3>
          <p>Toggleable via the navbar brand.</p>
29
30
        </div>
      </div>
31
32
      <nav class="navbar navbar-light navbar-static-top bg-faded">
        <div class="container">
33
          <button class="navbar-toggler hidden-sm-up" type="button" data-toggle="collapse" data-target="#exCollapsingNavbar2" aria-expanded="false" aria-controls="exCollapsingNavbar2" aria-label="Toggle navigation"></button>
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
          <div class="collapse navbar-toggleable-xs" id="exCollapsingNavbar2">
            <a class="navbar-brand" href="#">Sticky footer</a>
            <ul class="nav navbar-nav">
              <li class="nav-item active">
                <a class="nav-link" href="#">Nav item <span class="sr-only">(current)</span></a>
              </li>
              <li class="nav-item">
                <a class="nav-link" href="#">Another nav item</a>
              </li>
              <li class="nav-item">
                <a class="nav-link" href="#">More nav</a>
              </li>
              <li class="nav-item">
                <a class="nav-link" href="#">Last link</a>
              </li>
            </ul>
          </div>
        </div>
      </nav>
    </div>
54

55
56
    <!-- Begin page content -->
    <div class="container">
57
      <div class="m-t-1">
58
        <h1>Sticky footer with fixed navbar</h1>
59
      </div>
60
      <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 &gt; .container</code>.</p>
61
      <p>Back to <a href="../sticky-footer">the default sticky footer</a> minus the navbar.</p>
62
63
    </div>

64
    <footer class="footer">
65
      <div class="container">
66
        <span class="text-muted">Place sticky footer content here.</span>
67
      </div>
68
    </footer>
69

70

71
72
    <!-- Bootstrap core JavaScript
    ================================================== -->
73
    <!-- Placed at the end of the document so the pages load faster -->
74
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js" integrity="sha384-THPy051/pYDQGanwU6poAc/hOdQxjnOEXzbT+OuUAFqNqFjL+4IGLBgCJC3ZOShY" crossorigin="anonymous"></script>
XhmikosR's avatar
XhmikosR committed
75
    <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
76
    <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.2.0/js/tether.min.js" integrity="sha384-Plbmg8JY28KFelvJVai01l8WyZzrYWG825m+cZ0eDDS1f7d/js6ikvy1+X+guPIB" crossorigin="anonymous"></script>
77
    <script src="../../dist/js/bootstrap.min.js"></script>
78
79
    <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
    <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
80
  </body>
81
</html>