mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-12 00:08:59 +01:00
e468daac25
* WIP darkmode examples * Fix product css error, redo parts of blog * wip dashboard * updated rtl generated * fix up some examples, namely dashboard * jumbotron and sign-in fixes * more fixes * more * Fixes from code review * Remove duplicate `data-bs-target` in dashboard/index.html * Modify `blog-rtl/index.html` * Modify `dashboard-rtl/index.html` * Modify `carousel-rtl/index.html` * Keep JS on all pages for switcher * Remove Feather from dashboard examples --------- Co-authored-by: Julien Déramond <juderamond@gmail.com>
24 lines
720 B
HTML
24 lines
720 B
HTML
---
|
|
layout: examples
|
|
title: Sticky Footer Template
|
|
extra_css:
|
|
- "sticky-footer.css"
|
|
html_class: "h-100"
|
|
body_class: "d-flex flex-column h-100"
|
|
---
|
|
|
|
<!-- Begin page content -->
|
|
<main class="flex-shrink-0">
|
|
<div class="container">
|
|
<h1 class="mt-5">Sticky footer</h1>
|
|
<p class="lead">Pin a footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS.</p>
|
|
<p>Use <a href="{{< docsref "/examples/sticky-footer-navbar" >}}">the sticky footer with a fixed navbar</a> if need be, too.</p>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="footer mt-auto py-3 bg-body-tertiary">
|
|
<div class="container">
|
|
<span class="text-body-secondary">Place sticky footer content here.</span>
|
|
</div>
|
|
</footer>
|