aboutsummaryrefslogtreecommitdiff
path: root/examples/starter-template
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-15 16:40:39 -0700
committerMark Otto <[email protected]>2013-08-15 16:40:39 -0700
commit3d99a4c15e0661df630dbaf7dddb5228cf044fe6 (patch)
tree40e68d12f804131ef3cea3bf0120531106b42dc9 /examples/starter-template
parent54670ab64a2565fd35071eb17fc7eef3480eb724 (diff)
downloadbootstrap-3d99a4c15e0661df630dbaf7dddb5228cf044fe6.tar.xz
bootstrap-3d99a4c15e0661df630dbaf7dddb5228cf044fe6.zip
move to examples dir
Diffstat (limited to 'examples/starter-template')
-rw-r--r--examples/starter-template/index.html50
-rw-r--r--examples/starter-template/starter-template.css7
2 files changed, 57 insertions, 0 deletions
diff --git a/examples/starter-template/index.html b/examples/starter-template/index.html
new file mode 100644
index 000000000..08a277208
--- /dev/null
+++ b/examples/starter-template/index.html
@@ -0,0 +1,50 @@
+<!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/css/bootstrap.css" rel="stylesheet">
+
+ <!-- Custom styles for this template -->
+ <link href="starter-template.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 -->
+
+ <script src="../assets/js/jquery.js"></script>
+ <script src="../bootstrap/js/bootstrap.min.js"></script>
+ </body>
+</html> \ No newline at end of file
diff --git a/examples/starter-template/starter-template.css b/examples/starter-template/starter-template.css
new file mode 100644
index 000000000..4af7a6177
--- /dev/null
+++ b/examples/starter-template/starter-template.css
@@ -0,0 +1,7 @@
+body {
+ padding-top: 50px;
+}
+.starter-template {
+ padding: 40px 15px;
+ text-align: center;
+}