diff options
| author | XhmikosR <[email protected]> | 2021-01-19 08:34:18 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2021-01-19 18:20:37 +0200 |
| commit | 0bb8f991a032ff984f45ede26b53643ffa93891b (patch) | |
| tree | b5c124360151f417b9a4c15f2a5a6f9e4389095c /docs/4.6/examples/starter-template | |
| parent | b298dc0b34fd1ca73e8aa83e57fac4151bfbc3db (diff) | |
| download | bootstrap-0bb8f991a032ff984f45ede26b53643ffa93891b.tar.xz bootstrap-0bb8f991a032ff984f45ede26b53643ffa93891b.zip | |
Add v4.6.0 docs
Diffstat (limited to 'docs/4.6/examples/starter-template')
| -rw-r--r-- | docs/4.6/examples/starter-template/index.html | 102 | ||||
| -rw-r--r-- | docs/4.6/examples/starter-template/starter-template.css | 7 |
2 files changed, 109 insertions, 0 deletions
diff --git a/docs/4.6/examples/starter-template/index.html b/docs/4.6/examples/starter-template/index.html new file mode 100644 index 000000000..360a14690 --- /dev/null +++ b/docs/4.6/examples/starter-template/index.html @@ -0,0 +1,102 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> + <meta name="description" content=""> + <meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors"> + <meta name="generator" content="Hugo 0.80.0"> + <title>Starter Template ยท Bootstrap v4.6</title> + + <link rel="canonical" href="https://getbootstrap.com/docs/4.6/examples/starter-template/"> + + + + <!-- Bootstrap core CSS --> +<link href="/docs/4.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous"> + + + + <!-- Favicons --> +<link rel="apple-touch-icon" href="/docs/4.6/assets/img/favicons/apple-touch-icon.png" sizes="180x180"> +<link rel="icon" href="/docs/4.6/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png"> +<link rel="icon" href="/docs/4.6/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png"> +<link rel="manifest" href="/docs/4.6/assets/img/favicons/manifest.json"> +<link rel="mask-icon" href="/docs/4.6/assets/img/favicons/safari-pinned-tab.svg" color="#563d7c"> +<link rel="icon" href="/docs/4.6/assets/img/favicons/favicon.ico"> +<meta name="msapplication-config" content="/docs/4.6/assets/img/favicons/browserconfig.xml"> +<meta name="theme-color" content="#563d7c"> + + + <style> + .bd-placeholder-img { + font-size: 1.125rem; + text-anchor: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + @media (min-width: 768px) { + .bd-placeholder-img-lg { + font-size: 3.5rem; + } + } + </style> + + + <!-- Custom styles for this template --> + <link href="starter-template.css" rel="stylesheet"> + </head> + <body> + +<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top"> + <a class="navbar-brand" href="#">Navbar</a> + <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation"> + <span class="navbar-toggler-icon"></span> + </button> + + <div class="collapse navbar-collapse" id="navbarsExampleDefault"> + <ul class="navbar-nav mr-auto"> + <li class="nav-item active"> + <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a> + </li> + <li class="nav-item"> + <a class="nav-link" href="#">Link</a> + </li> + <li class="nav-item"> + <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a> + </li> + <li class="nav-item dropdown"> + <a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Dropdown</a> + <div class="dropdown-menu" aria-labelledby="dropdown01"> + <a class="dropdown-item" href="#">Action</a> + <a class="dropdown-item" href="#">Another action</a> + <a class="dropdown-item" href="#">Something else here</a> + </div> + </li> + </ul> + <form class="form-inline my-2 my-lg-0"> + <input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search"> + <button class="btn btn-secondary my-2 my-sm-0" type="submit">Search</button> + </form> + </div> +</nav> + +<main role="main" class="container"> + + <div class="starter-template"> + <h1>Bootstrap starter template</h1> + <p class="lead">Use this document as a way to quickly start any new project.<br> All you get is this text and a mostly barebones HTML document.</p> + </div> + +</main><!-- /.container --> + + + <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> + <script>window.jQuery || document.write('<script src="/docs/4.6/assets/js/vendor/jquery.slim.min.js"><\/script>')</script><script src="/docs/4.6/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script> + + + </body> +</html> diff --git a/docs/4.6/examples/starter-template/starter-template.css b/docs/4.6/examples/starter-template/starter-template.css new file mode 100644 index 000000000..5f64cd294 --- /dev/null +++ b/docs/4.6/examples/starter-template/starter-template.css @@ -0,0 +1,7 @@ +body { + padding-top: 5rem; +} +.starter-template { + padding: 3rem 1.5rem; + text-align: center; +} |
