]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fix indenting on getting started page
authorMark Otto <markotto@twitter.com>
Fri, 13 Jul 2012 07:56:18 +0000 (00:56 -0700)
committerMark Otto <markotto@twitter.com>
Fri, 13 Jul 2012 07:56:18 +0000 (00:56 -0700)
docs/getting-started.html
docs/templates/pages/getting-started.mustache

index ea944baf57e356bfdbfa5a941a3dea5006086549..51eab28415030a751648bd77cf18ce037a7f329a 100644 (file)
         </div>
         <p>With a brief intro into the contents out of the way, we can focus putting Bootstrap to use. To do that, we'll utilize a basic HTML template that includes everything we mentioned in the <a href="#file-structure">File structure</a>.</p>
         <p>Now, here's a look at a <strong>typical HTML file</strong>:</p>
-    <pre class="prettyprint linenums">
-    &lt;html&gt;
-      &lt;head&gt;
-        &lt;title&gt;Bootstrap 101 Template&lt;/title&gt;
-      &lt;/head&gt;
-      &lt;body&gt;
-        &lt;h1&gt;Hello, world!&lt;/h1&gt;
-      &lt;/body&gt;
-    &lt;/html&gt;
-    </pre>
+<pre class="prettyprint linenums">
+&lt;html&gt;
+  &lt;head&gt;
+    &lt;title&gt;Bootstrap 101 Template&lt;/title&gt;
+  &lt;/head&gt;
+  &lt;body&gt;
+    &lt;h1&gt;Hello, world!&lt;/h1&gt;
+  &lt;/body&gt;
+&lt;/html&gt;
+</pre>
         <p>To make this <strong>a Bootstrapped template</strong>, just include the appropriate CSS and JS files:</p>
-    <pre class="prettyprint linenums">
-    &lt;html&gt;
-      &lt;head&gt;
-        &lt;title&gt;Bootstrap 101 Template&lt;/title&gt;
-        &lt;!-- Bootstrap --&gt;
-        &lt;link href="css/bootstrap.min.css" rel="stylesheet"&gt;
-        &lt;script src="js/bootstrap.min.js"&gt;&lt;/script&gt;
-      &lt;/head&gt;
-      &lt;body&gt;
-        &lt;h1&gt;Hello, world!&lt;/h1&gt;
-      &lt;/body&gt;
-    &lt;/html&gt;
-    </pre>
+<pre class="prettyprint linenums">
+&lt;html&gt;
+  &lt;head&gt;
+    &lt;title&gt;Bootstrap 101 Template&lt;/title&gt;
+    &lt;!-- Bootstrap --&gt;
+    &lt;link href="css/bootstrap.min.css" rel="stylesheet"&gt;
+    &lt;script src="js/bootstrap.min.js"&gt;&lt;/script&gt;
+  &lt;/head&gt;
+  &lt;body&gt;
+    &lt;h1&gt;Hello, world!&lt;/h1&gt;
+  &lt;/body&gt;
+&lt;/html&gt;
+</pre>
         <p><strong>And you're set!</strong> With those two files added, you can begin to develop any site or application with Bootstrap.</p>
 
         <hr>
index 96b20f7ce24681408584909464abb5c0bbbd20e7..ed203281aee5bbeae53ad912cc5f7bebef1d49f2 100644 (file)
         </div>
         <p>{{_i}}With a brief intro into the contents out of the way, we can focus putting Bootstrap to use. To do that, we'll utilize a basic HTML template that includes everything we mentioned in the <a href="#file-structure">File structure</a>.{{/i}}</p>
         <p>{{_i}}Now, here's a look at a <strong>typical HTML file</strong>:{{/i}}</p>
-    <pre class="prettyprint linenums">
-    &lt;html&gt;
-      &lt;head&gt;
-        &lt;title&gt;Bootstrap 101 Template&lt;/title&gt;
-      &lt;/head&gt;
-      &lt;body&gt;
-        &lt;h1&gt;Hello, world!&lt;/h1&gt;
-      &lt;/body&gt;
-    &lt;/html&gt;
-    </pre>
+<pre class="prettyprint linenums">
+&lt;html&gt;
+  &lt;head&gt;
+    &lt;title&gt;Bootstrap 101 Template&lt;/title&gt;
+  &lt;/head&gt;
+  &lt;body&gt;
+    &lt;h1&gt;Hello, world!&lt;/h1&gt;
+  &lt;/body&gt;
+&lt;/html&gt;
+</pre>
         <p>{{_i}}To make this <strong>a Bootstrapped template</strong>, just include the appropriate CSS and JS files:{{/i}}</p>
-    <pre class="prettyprint linenums">
-    &lt;html&gt;
-      &lt;head&gt;
-        &lt;title&gt;Bootstrap 101 Template&lt;/title&gt;
-        &lt;!-- Bootstrap --&gt;
-        &lt;link href="css/bootstrap.min.css" rel="stylesheet"&gt;
-        &lt;script src="js/bootstrap.min.js"&gt;&lt;/script&gt;
-      &lt;/head&gt;
-      &lt;body&gt;
-        &lt;h1&gt;Hello, world!&lt;/h1&gt;
-      &lt;/body&gt;
-    &lt;/html&gt;
-    </pre>
+<pre class="prettyprint linenums">
+&lt;html&gt;
+  &lt;head&gt;
+    &lt;title&gt;Bootstrap 101 Template&lt;/title&gt;
+    &lt;!-- Bootstrap --&gt;
+    &lt;link href="css/bootstrap.min.css" rel="stylesheet"&gt;
+    &lt;script src="js/bootstrap.min.js"&gt;&lt;/script&gt;
+  &lt;/head&gt;
+  &lt;body&gt;
+    &lt;h1&gt;Hello, world!&lt;/h1&gt;
+  &lt;/body&gt;
+&lt;/html&gt;
+</pre>
         <p>{{_i}}<strong>And you're set!</strong> With those two files added, you can begin to develop any site or application with Bootstrap.{{/i}}</p>
 
         <hr>