diff options
Diffstat (limited to 'vendor/twbs/bootstrap/site/_layouts')
-rw-r--r-- | vendor/twbs/bootstrap/site/_layouts/default.html | 22 | ||||
-rw-r--r-- | vendor/twbs/bootstrap/site/_layouts/docs.html | 34 | ||||
-rw-r--r-- | vendor/twbs/bootstrap/site/_layouts/examples.html | 16 | ||||
-rw-r--r-- | vendor/twbs/bootstrap/site/_layouts/redirect.html | 38 | ||||
-rw-r--r-- | vendor/twbs/bootstrap/site/_layouts/simple.html | 12 |
5 files changed, 122 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/site/_layouts/default.html b/vendor/twbs/bootstrap/site/_layouts/default.html new file mode 100644 index 000000000..28f4cdccb --- /dev/null +++ b/vendor/twbs/bootstrap/site/_layouts/default.html @@ -0,0 +1,22 @@ +<!doctype html> +<html lang="en"> + <head> + {% include header.html %} + </head> + <body> + {% include skippy.html %} + + {% include docs-navbar.html %} + + {% if page.layout == "simple" or page.layout == "examples" %} + {{ content }} + {% else %} + <main id="content" role="main"> + {{ content }} + </main> + {% endif %} + + {% include footer.html %} + {% include scripts.html %} + </body> +</html> diff --git a/vendor/twbs/bootstrap/site/_layouts/docs.html b/vendor/twbs/bootstrap/site/_layouts/docs.html new file mode 100644 index 000000000..1d2125508 --- /dev/null +++ b/vendor/twbs/bootstrap/site/_layouts/docs.html @@ -0,0 +1,34 @@ +<!doctype html> +<html lang="en"> + <head> + {% include header.html %} + </head> + <body> + {% include skippy.html %} + + {% include docs-navbar.html %} + + <div class="container-fluid"> + <div class="row flex-xl-nowrap"> + <div class="col-12 col-md-3 col-xl-2 bd-sidebar"> + {% include docs-sidebar.html %} + </div> + + {% if page.toc %} + <div class="d-none d-xl-block col-xl-2 bd-toc"> + {{ content | toc_only }} + </div> + {% endif %} + + <main class="col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content" role="main"> + <h1 class="bd-title" id="content">{{ page.title | smartify }}</h1> + <p class="bd-lead">{{ page.description | smartify }}</p> + {% include ads.html %} + {{ content }} + </main> + </div> + </div> + + {% include scripts.html %} + </body> +</html> diff --git a/vendor/twbs/bootstrap/site/_layouts/examples.html b/vendor/twbs/bootstrap/site/_layouts/examples.html new file mode 100644 index 000000000..1f8fbcdec --- /dev/null +++ b/vendor/twbs/bootstrap/site/_layouts/examples.html @@ -0,0 +1,16 @@ +--- +layout: default +--- + +<header class="d-flex flex-column flex-md-row align-items-md-center p-5 bg-light"> + <div class="pt-md-3 pb-md-4"> + <h1 class="bd-title mt-0">{{ page.title | smartify }}</h1> + <p class="bd-lead">{{ page.description | smartify }}</p> + <a href="{{ site.download.source }}" class="btn btn-lg btn-bd-primary" onclick="ga('send', 'event', 'Examples', 'Hero', 'Download');">Download source code</a> + </div> + {% include ads.html %} +</header> + +<main class="bd-content p-5" id="content" role="main"> + {{ content }} +</main> diff --git a/vendor/twbs/bootstrap/site/_layouts/redirect.html b/vendor/twbs/bootstrap/site/_layouts/redirect.html new file mode 100644 index 000000000..a30e77bf4 --- /dev/null +++ b/vendor/twbs/bootstrap/site/_layouts/redirect.html @@ -0,0 +1,38 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <title>Bootstrap ยท Content moved</title> + <link rel="canonical" href="{{ page.redirect.to }}"> + <script>window.location="{{ page.redirect.to }}";</script> + <meta http-equiv="refresh" content="0; url={{ page.redirect.to }}"> + <meta name="robots" content="noindex"> + <style> + html { + display: flex; + align-items: center; + justify-content: center; + margin: 0; + width: 100vw; + height: 100vh; + text-align: center; + } + body { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + } + h1 { + margin-top: 0; + margin-bottom: .5rem; + } + a { + color: #007bff; + text-decoration: none; + } + </style> + </head> + <body> + <h1>Redirecting…</h1> + <a href="{{ page.redirect.to }}">Click here if you are not redirected</a> + </body> +</html> diff --git a/vendor/twbs/bootstrap/site/_layouts/simple.html b/vendor/twbs/bootstrap/site/_layouts/simple.html new file mode 100644 index 000000000..dfd9afd16 --- /dev/null +++ b/vendor/twbs/bootstrap/site/_layouts/simple.html @@ -0,0 +1,12 @@ +--- +layout: default +--- + +<div class="container my-5"> + <main class="bd-content" role="main"> + <h1 class="bd-title" id="content">{{ page.title | smartify }}</h1> + <p class="bd-lead">{{ page.description | smartify }}</p> + {% include ads.html %} + {{ content }} + </main> +</div> |