aboutsummaryrefslogtreecommitdiff
path: root/starter-template
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-06-19 23:16:00 -0700
committerMark Otto <[email protected]>2013-06-19 23:16:00 -0700
commitf91559d85db1d7e41d19fa360a135fb9eb228bbe (patch)
tree5338a4328769f0a3980767e9b4c60b678220492b /starter-template
parent9f73fef30a075949c1d9f3816a598b303dfe0bfe (diff)
downloadbootstrap-f91559d85db1d7e41d19fa360a135fb9eb228bbe.tar.xz
bootstrap-f91559d85db1d7e41d19fa360a135fb9eb228bbe.zip
update starter template to use new format; include latest BS3 CSS
Diffstat (limited to 'starter-template')
-rw-r--r--starter-template/example.css7
-rw-r--r--starter-template/index.html48
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