index.html 721 B

123456789101112131415161718192021222324
  1. ---
  2. layout: examples
  3. title: Sticky Footer Template
  4. extra_css:
  5. - "sticky-footer.css"
  6. html_class: "h-100"
  7. body_class: "d-flex flex-column h-100"
  8. include_js: false
  9. ---
  10. <!-- Begin page content -->
  11. <main class="flex-shrink-0">
  12. <div class="container">
  13. <h1 class="mt-5">Sticky footer</h1>
  14. <p class="lead">Pin a footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS.</p>
  15. <p>Use <a href="{{< docsref "/examples/sticky-footer-navbar" >}}">the sticky footer with a fixed navbar</a> if need be, too.</p>
  16. </div>
  17. </main>
  18. <footer class="footer mt-auto py-3 bg-light">
  19. <div class="container">
  20. <span class="text-muted">Place sticky footer content here.</span>
  21. </div>
  22. </footer>