diff options
Diffstat (limited to 'starter-template')
| -rw-r--r-- | starter-template/example.css | 7 | ||||
| -rw-r--r-- | starter-template/index.html | 48 |
2 files changed, 55 insertions, 0 deletions
diff --git a/starter-template/example.css b/starter-template/example.css new file mode 100644 index 000000000..4af7a6177 --- /dev/null +++ b/starter-template/example.css @@ -0,0 +1,7 @@ +body { + padding-top: 50px; +} +.starter-template { + padding: 40px 15px; + text-align: center; +} diff --git a/starter-template/index.html b/starter-template/index.html new file mode 100644 index 000000000..c87cb11cc --- /dev/null +++ b/starter-template/index.html @@ -0,0 +1,48 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="description" content=""> + <meta name="author" content=""> + + <title>Starter template for Bootstrap</title> + + <!-- Bootstrap core CSS --> + <link href="../bootstrap/bootstrap.css" rel="stylesheet"> + + <!-- Custom styles for this template --> + <link href="example.css" rel="stylesheet"> + </head> + + <body> + + <div class="navbar navbar-inverse navbar-fixed-top"> + <div class="container"> + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse"> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </button> + <a class="navbar-brand" href="#">Project name</a> + <div class="nav-collapse collapse"> + <ul class="nav navbar-nav"> + <li class="active"><a href="#">Home</a></li> + <li><a href="#about">About</a></li> + <li><a href="#contact">Contact</a></li> + </ul> + </div><!--/.nav-collapse --> + </div> + </div> + + <div 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> + + </div><!-- /.container --> + + </body> +</html>
\ No newline at end of file |
