aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/site/content/docs/5.2/examples/sticky-footer
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-10-10 18:05:26 +0000
committerMario <mario@mariovavti.com>2022-10-10 18:05:26 +0000
commitef2448e17e742e7dcef458993bce1e0a29756aa7 (patch)
treed23c62753abbb42e7bb742f2d44d09321b6f2eee /vendor/twbs/bootstrap/site/content/docs/5.2/examples/sticky-footer
parent6ab65519a0fc3e55ad5f32ce1641190ef609a4e2 (diff)
parent99a5cf1ad4660a31af6c03e5a1abc3d374f82c78 (diff)
downloadvolse-hubzilla-ef2448e17e742e7dcef458993bce1e0a29756aa7.tar.gz
volse-hubzilla-ef2448e17e742e7dcef458993bce1e0a29756aa7.tar.bz2
volse-hubzilla-ef2448e17e742e7dcef458993bce1e0a29756aa7.zip
Merge branch '7.8RC'7.8
Diffstat (limited to 'vendor/twbs/bootstrap/site/content/docs/5.2/examples/sticky-footer')
-rw-r--r--vendor/twbs/bootstrap/site/content/docs/5.2/examples/sticky-footer/index.html24
-rw-r--r--vendor/twbs/bootstrap/site/content/docs/5.2/examples/sticky-footer/sticky-footer.css9
2 files changed, 33 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/site/content/docs/5.2/examples/sticky-footer/index.html b/vendor/twbs/bootstrap/site/content/docs/5.2/examples/sticky-footer/index.html
new file mode 100644
index 000000000..7a6e127cd
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/content/docs/5.2/examples/sticky-footer/index.html
@@ -0,0 +1,24 @@
+---
+layout: examples
+title: Sticky Footer Template
+extra_css:
+ - "sticky-footer.css"
+html_class: "h-100"
+body_class: "d-flex flex-column h-100"
+include_js: false
+---
+
+<!-- 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-light">
+ <div class="container">
+ <span class="text-muted">Place sticky footer content here.</span>
+ </div>
+</footer>
diff --git a/vendor/twbs/bootstrap/site/content/docs/5.2/examples/sticky-footer/sticky-footer.css b/vendor/twbs/bootstrap/site/content/docs/5.2/examples/sticky-footer/sticky-footer.css
new file mode 100644
index 000000000..f8be43729
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/content/docs/5.2/examples/sticky-footer/sticky-footer.css
@@ -0,0 +1,9 @@
+/* Custom page CSS
+-------------------------------------------------- */
+/* Not required for template or sticky footer method. */
+
+.container {
+ width: auto;
+ max-width: 680px;
+ padding: 0 15px;
+}