unignore bower_components
[bootswatch] / 2 / bower_components / bootstrap / docs / scaffolding.html
1 <!DOCTYPE html>
2 <html lang="en">
3   <head>
4     <meta charset="utf-8">
5     <title>Scaffolding ยท Bootstrap</title>
6     <meta name="viewport" content="width=device-width, initial-scale=1.0">
7     <meta name="description" content="">
8     <meta name="author" content="">
9
10     <!-- Le styles -->
11     <link href="assets/css/bootstrap.css" rel="stylesheet">
12     <link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
13     <link href="assets/css/docs.css" rel="stylesheet">
14     <link href="assets/js/google-code-prettify/prettify.css" rel="stylesheet">
15
16     <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
17     <!--[if lt IE 9]>
18       <script src="assets/js/html5shiv.js"></script>
19     <![endif]-->
20
21     <!-- Le fav and touch icons -->
22     <link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
23     <link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
24       <link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
25                     <link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
26                                    <link rel="shortcut icon" href="assets/ico/favicon.png">
27
28     <script type="text/javascript">
29       var _gaq = _gaq || [];
30       _gaq.push(['_setAccount', 'UA-146052-10']);
31       _gaq.push(['_trackPageview']);
32       (function() {
33         var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
34         ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
35         var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
36       })();
37     </script>
38   </head>
39
40   <body data-spy="scroll" data-target=".bs-docs-sidebar">
41
42     <!-- Navbar
43     ================================================== -->
44     <div class="navbar navbar-inverse navbar-fixed-top">
45       <div class="navbar-inner">
46         <div class="container">
47           <button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
48             <span class="icon-bar"></span>
49             <span class="icon-bar"></span>
50             <span class="icon-bar"></span>
51           </button>
52           <a class="brand" href="./index.html">Bootstrap</a>
53           <div class="nav-collapse collapse">
54             <ul class="nav">
55               <li class="">
56                 <a href="./index.html">Home</a>
57               </li>
58               <li class="">
59                 <a href="./getting-started.html">Get started</a>
60               </li>
61               <li class="active">
62                 <a href="./scaffolding.html">Scaffolding</a>
63               </li>
64               <li class="">
65                 <a href="./base-css.html">Base CSS</a>
66               </li>
67               <li class="">
68                 <a href="./components.html">Components</a>
69               </li>
70               <li class="">
71                 <a href="./javascript.html">JavaScript</a>
72               </li>
73               <li class="">
74                 <a href="./customize.html">Customize</a>
75               </li>
76             </ul>
77           </div>
78         </div>
79       </div>
80     </div>
81
82 <!-- Subhead
83 ================================================== -->
84 <header class="jumbotron subhead" id="overview">
85   <div class="container">
86     <h1>Scaffolding</h1>
87     <p class="lead">Bootstrap is built on responsive 12-column grids, layouts, and components.</p>
88   </div>
89 </header>
90
91   <div class="container">
92
93     <!-- Docs nav
94     ================================================== -->
95     <div class="row">
96       <div class="span3 bs-docs-sidebar">
97         <ul class="nav nav-list bs-docs-sidenav">
98           <li><a href="#global"><i class="icon-chevron-right"></i> Global styles</a></li>
99           <li><a href="#gridSystem"><i class="icon-chevron-right"></i> Grid system</a></li>
100           <li><a href="#fluidGridSystem"><i class="icon-chevron-right"></i> Fluid grid system</a></li>
101           <li><a href="#layouts"><i class="icon-chevron-right"></i> Layouts</a></li>
102           <li><a href="#responsive"><i class="icon-chevron-right"></i> Responsive design</a></li>
103         </ul>
104       </div>
105       <div class="span9">
106
107
108
109         <!-- Global Bootstrap settings
110         ================================================== -->
111         <section id="global">
112           <div class="page-header">
113             <h1>Global settings</h1>
114           </div>
115
116           <h3>Requires HTML5 doctype</h3>
117           <p>Bootstrap makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype. Include it at the beginning of all your projects.</p>
118 <pre class="prettyprint linenums">
119 &lt;!DOCTYPE html&gt;
120 &lt;html lang="en"&gt;
121   ...
122 &lt;/html&gt;
123 </pre>
124
125           <h3>Typography and links</h3>
126           <p>Bootstrap sets basic global display, typography, and link styles. Specifically, we:</p>
127           <ul>
128             <li>Remove <code>margin</code> on the body</li>
129             <li>Set <code>background-color: white;</code> on the <code>body</code></li>
130             <li>Use the <code>@baseFontFamily</code>, <code>@baseFontSize</code>, and <code>@baseLineHeight</code> attributes as our typographic base</li>
131             <li>Set the global link color via <code>@linkColor</code> and apply link underlines only on <code>:hover</code></li>
132           </ul>
133           <p>These styles can be found within <strong>scaffolding.less</strong>.</p>
134
135           <h3>Reset via Normalize</h3>
136           <p>With Bootstrap 2, the old reset block has been dropped in favor of <a href="http://necolas.github.com/normalize.css/" target="_blank">Normalize.css</a>, a project by <a href="http://twitter.com/necolas" target="_blank">Nicolas Gallagher</a> and <a href="http://twitter.com/jon_neal" target="_blank">Jonathan Neal</a> that also powers the <a href="http://html5boilerplate.com" target="_blank">HTML5 Boilerplate</a>. While we use much of Normalize within our <strong>reset.less</strong>, we have removed some elements specifically for Bootstrap.</p>
137
138         </section>
139
140
141
142
143         <!-- Grid system
144         ================================================== -->
145         <section id="gridSystem">
146           <div class="page-header">
147             <h1>Default grid system</h1>
148           </div>
149
150           <h2>Live grid example</h2>
151           <p>The default Bootstrap grid system utilizes <strong>12 columns</strong>, making for a 940px wide container without <a href="./scaffolding.html#responsive">responsive features</a> enabled. With the responsive CSS file added, the grid adapts to be 724px and 1170px wide depending on your viewport. Below 767px viewports, the columns become fluid and stack vertically.</p>
152           <div class="bs-docs-grid">
153             <div class="row show-grid">
154               <div class="span1">1</div>
155               <div class="span1">1</div>
156               <div class="span1">1</div>
157               <div class="span1">1</div>
158               <div class="span1">1</div>
159               <div class="span1">1</div>
160               <div class="span1">1</div>
161               <div class="span1">1</div>
162               <div class="span1">1</div>
163             </div>
164             <div class="row show-grid">
165               <div class="span2">2</div>
166               <div class="span3">3</div>
167               <div class="span4">4</div>
168             </div>
169             <div class="row show-grid">
170               <div class="span4">4</div>
171               <div class="span5">5</div>
172             </div>
173             <div class="row show-grid">
174               <div class="span9">9</div>
175             </div>
176           </div>
177
178           <h3>Basic grid HTML</h3>
179           <p>For a simple two column layout, create a <code>.row</code> and add the appropriate number of <code>.span*</code> columns. As this is a 12-column grid, each <code>.span*</code> spans a number of those 12 columns, and should always add up to 12 for each row (or the number of columns in the parent).</p>
180 <pre class="prettyprint linenums">
181 &lt;div class="row"&gt;
182   &lt;div class="span4"&gt;...&lt;/div&gt;
183   &lt;div class="span8"&gt;...&lt;/div&gt;
184 &lt;/div&gt;
185 </pre>
186           <p>Given this example, we have <code>.span4</code> and <code>.span8</code>, making for 12 total columns and a complete row.</p>
187
188           <h2>Offsetting columns</h2>
189           <p>Move columns to the right using <code>.offset*</code> classes. Each class increases the left margin of a column by a whole column. For example, <code>.offset4</code> moves <code>.span4</code> over four columns.</p>
190           <div class="bs-docs-grid">
191             <div class="row show-grid">
192               <div class="span4">4</div>
193               <div class="span3 offset2">3 offset 2</div>
194             </div><!-- /row -->
195             <div class="row show-grid">
196               <div class="span3 offset1">3 offset 1</div>
197               <div class="span3 offset2">3 offset 2</div>
198             </div><!-- /row -->
199             <div class="row show-grid">
200               <div class="span6 offset3">6 offset 3</div>
201             </div><!-- /row -->
202           </div>
203 <pre class="prettyprint linenums">
204 &lt;div class="row"&gt;
205   &lt;div class="span4"&gt;...&lt;/div&gt;
206   &lt;div class="span3 offset2"&gt;...&lt;/div&gt;
207 &lt;/div&gt;
208 </pre>
209
210           <h2>Nesting columns</h2>
211           <p>To nest your content with the default grid, add a new <code>.row</code> and set of <code>.span*</code> columns within an existing <code>.span*</code> column. Nested rows should include a set of columns that add up to the number of columns of its parent.</p>
212           <div class="row show-grid">
213             <div class="span9">
214               Level 1 column
215               <div class="row show-grid">
216                 <div class="span6">
217                   Level 2
218                 </div>
219                 <div class="span3">
220                   Level 2
221                 </div>
222               </div>
223             </div>
224           </div>
225 <pre class="prettyprint linenums">
226 &lt;div class="row"&gt;
227   &lt;div class="span9"&gt;
228     Level 1 column
229     &lt;div class="row"&gt;
230       &lt;div class="span6"&gt;Level 2&lt;/div&gt;
231       &lt;div class="span3"&gt;Level 2&lt;/div&gt;
232     &lt;/div&gt;
233   &lt;/div&gt;
234 &lt;/div&gt;
235 </pre>
236         </section>
237
238
239
240         <!-- Fluid grid system
241         ================================================== -->
242         <section id="fluidGridSystem">
243           <div class="page-header">
244             <h1>Fluid grid system</h1>
245           </div>
246
247           <h2>Live fluid grid example</h2>
248           <p>The fluid grid system uses percents instead of pixels for column widths. It has the same responsive capabilities as our fixed grid system, ensuring proper proportions for key screen resolutions and devices.</p>
249           <div class="bs-docs-grid">
250             <div class="row-fluid show-grid">
251               <div class="span1">1</div>
252               <div class="span1">1</div>
253               <div class="span1">1</div>
254               <div class="span1">1</div>
255               <div class="span1">1</div>
256               <div class="span1">1</div>
257               <div class="span1">1</div>
258               <div class="span1">1</div>
259               <div class="span1">1</div>
260               <div class="span1">1</div>
261               <div class="span1">1</div>
262               <div class="span1">1</div>
263             </div>
264             <div class="row-fluid show-grid">
265               <div class="span4">4</div>
266               <div class="span4">4</div>
267               <div class="span4">4</div>
268             </div>
269             <div class="row-fluid show-grid">
270               <div class="span4">4</div>
271               <div class="span8">8</div>
272             </div>
273             <div class="row-fluid show-grid">
274               <div class="span6">6</div>
275               <div class="span6">6</div>
276             </div>
277             <div class="row-fluid show-grid">
278               <div class="span12">12</div>
279             </div>
280           </div>
281
282           <h3>Basic fluid grid HTML</h3>
283           <p>Make any row "fluid" by changing <code>.row</code> to <code>.row-fluid</code>. The column classes stay the exact same, making it easy to flip between fixed and fluid grids.</p>
284 <pre class="prettyprint linenums">
285 &lt;div class="row-fluid"&gt;
286   &lt;div class="span4"&gt;...&lt;/div&gt;
287   &lt;div class="span8"&gt;...&lt;/div&gt;
288 &lt;/div&gt;
289 </pre>
290
291           <h2>Fluid offsetting</h2>
292           <p>Operates the same way as the fixed grid system offsetting: add <code>.offset*</code> to any column to offset by that many columns.</p>
293           <div class="bs-docs-grid">
294             <div class="row-fluid show-grid">
295               <div class="span4">4</div>
296               <div class="span4 offset4">4 offset 4</div>
297             </div><!-- /row -->
298             <div class="row-fluid show-grid">
299               <div class="span3 offset3">3 offset 3</div>
300               <div class="span3 offset3">3 offset 3</div>
301             </div><!-- /row -->
302             <div class="row-fluid show-grid">
303               <div class="span6 offset6">6 offset 6</div>
304             </div><!-- /row -->
305           </div>
306 <pre class="prettyprint linenums">
307 &lt;div class="row-fluid"&gt;
308   &lt;div class="span4"&gt;...&lt;/div&gt;
309   &lt;div class="span4 offset2"&gt;...&lt;/div&gt;
310 &lt;/div&gt;
311 </pre>
312
313           <h2>Fluid nesting</h2>
314           <p>Fluid grids utilize nesting differently: each nested level of columns should add up to 12 columns. This is because the fluid grid uses percentages, not pixels, for setting widths.</p>
315           <div class="row-fluid show-grid">
316             <div class="span12">
317               Fluid 12
318               <div class="row-fluid show-grid">
319                 <div class="span6">
320                   Fluid 6
321                   <div class="row-fluid show-grid">
322                     <div class="span6">
323                       Fluid 6
324                     </div>
325                     <div class="span6">
326                       Fluid 6
327                     </div>
328                   </div>
329                 </div>
330                 <div class="span6">
331                   Fluid 6
332                 </div>
333               </div>
334             </div>
335           </div>
336 <pre class="prettyprint linenums">
337 &lt;div class="row-fluid"&gt;
338   &lt;div class="span12"&gt;
339     Fluid 12
340     &lt;div class="row-fluid"&gt;
341       &lt;div class="span6"&gt;
342         Fluid 6
343         &lt;div class="row-fluid"&gt;
344           &lt;div class="span6"&gt;Fluid 6&lt;/div&gt;
345           &lt;div class="span6"&gt;Fluid 6&lt;/div&gt;
346         &lt;/div&gt;
347       &lt;/div&gt;
348       &lt;div class="span6"&gt;Fluid 6&lt;/div&gt;
349     &lt;/div&gt;
350   &lt;/div&gt;
351 &lt;/div&gt;
352 </pre>
353
354         </section>
355
356
357
358
359         <!-- Layouts (Default and fluid)
360         ================================================== -->
361         <section id="layouts">
362           <div class="page-header">
363             <h1>Layouts</h1>
364           </div>
365
366           <h2>Fixed layout</h2>
367           <p>Provides a common fixed-width (and optionally responsive) layout with only <code>&lt;div class="container"&gt;</code> required.</p>
368           <div class="mini-layout">
369             <div class="mini-layout-body"></div>
370           </div>
371 <pre class="prettyprint linenums">
372 &lt;body&gt;
373   &lt;div class="container"&gt;
374     ...
375   &lt;/div&gt;
376 &lt;/body&gt;
377 </pre>
378
379           <h2>Fluid layout</h2>
380           <p>Create a fluid, two-column page with <code>&lt;div class="container-fluid"&gt;</code>&mdash;great for applications and docs.</p>
381           <div class="mini-layout fluid">
382             <div class="mini-layout-sidebar"></div>
383             <div class="mini-layout-body"></div>
384           </div>
385 <pre class="prettyprint linenums">
386 &lt;div class="container-fluid"&gt;
387   &lt;div class="row-fluid"&gt;
388     &lt;div class="span2"&gt;
389       &lt;!--Sidebar content--&gt;
390     &lt;/div&gt;
391     &lt;div class="span10"&gt;
392       &lt;!--Body content--&gt;
393     &lt;/div&gt;
394   &lt;/div&gt;
395 &lt;/div&gt;
396 </pre>
397         </section>
398
399
400
401
402         <!-- Responsive design
403         ================================================== -->
404         <section id="responsive">
405           <div class="page-header">
406             <h1>Responsive design</h1>
407           </div>
408
409           <h2>Enabling responsive features</h2>
410           <p>Turn on responsive CSS in your project by including the proper meta tag and additional stylesheet within the <code>&lt;head&gt;</code> of your document. If you've compiled Bootstrap from the Customize page, you need only include the meta tag.</p>
411 <pre class="prettyprint linenums">
412 &lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&gt;
413 &lt;link href="assets/css/bootstrap-responsive.css" rel="stylesheet"&gt;
414 </pre>
415           <p><span class="label label-info">Heads up!</span>  Bootstrap doesn't include responsive features by default at this time as not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it as needed.</p>
416
417           <h2>About responsive Bootstrap</h2>
418           <img src="assets/img/responsive-illustrations.png" alt="Responsive devices" style="float: right; margin: 0 0 20px 20px;">
419           <p>Media queries allow for custom CSS based on a number of conditions&mdash;ratios, widths, display type, etc&mdash;but usually focuses around <code>min-width</code> and <code>max-width</code>.</p>
420           <ul>
421             <li>Modify the width of column in our grid</li>
422             <li>Stack elements instead of float wherever necessary</li>
423             <li>Resize headings and text to be more appropriate for devices</li>
424           </ul>
425           <p>Use media queries responsibly and only as a start to your mobile audiences. For larger projects, do consider dedicated code bases and not layers of media queries.</p>
426
427           <h2>Supported devices</h2>
428           <p>Bootstrap supports a handful of media queries in a single file to help make your projects more appropriate on different devices and screen resolutions. Here's what's included:</p>
429           <table class="table table-bordered table-striped">
430             <thead>
431               <tr>
432                 <th>Label</th>
433                 <th>Layout width</th>
434                 <th>Column width</th>
435                 <th>Gutter width</th>
436               </tr>
437             </thead>
438             <tbody>
439               <tr>
440                 <td>Large display</td>
441                 <td>1200px and up</td>
442                 <td>70px</td>
443                 <td>30px</td>
444               </tr>
445               <tr>
446                 <td>Default</td>
447                 <td>980px and up</td>
448                 <td>60px</td>
449                 <td>20px</td>
450               </tr>
451               <tr>
452                 <td>Portrait tablets</td>
453                 <td>768px and above</td>
454                 <td>42px</td>
455                 <td>20px</td>
456               </tr>
457               <tr>
458                 <td>Phones to tablets</td>
459                 <td>767px and below</td>
460                 <td class="muted" colspan="2">Fluid columns, no fixed widths</td>
461               </tr>
462               <tr>
463                 <td>Phones</td>
464                 <td>480px and below</td>
465                 <td class="muted" colspan="2">Fluid columns, no fixed widths</td>
466               </tr>
467             </tbody>
468           </table>
469 <pre class="prettyprint linenums">
470 /* Large desktop */
471 @media (min-width: 1200px) { ... }
472
473 /* Portrait tablet to landscape and desktop */
474 @media (min-width: 768px) and (max-width: 979px) { ... }
475
476 /* Landscape phone to portrait tablet */
477 @media (max-width: 767px) { ... }
478
479 /* Landscape phones and down */
480 @media (max-width: 480px) { ... }
481 </pre>
482
483
484           <h2>Responsive utility classes</h2>
485           <p>For faster mobile-friendly development, use these utility classes for showing and hiding content by device. Below is a table of the available classes and their effect on a given media query layout (labeled by device). They can be found in <code>responsive.less</code>.</p>
486           <table class="table table-bordered table-striped responsive-utilities">
487             <thead>
488               <tr>
489                 <th>Class</th>
490                 <th>Phones <small>767px and below</small></th>
491                 <th>Tablets <small>979px to 768px</small></th>
492                 <th>Desktops <small>Default</small></th>
493               </tr>
494             </thead>
495             <tbody>
496               <tr>
497                 <th><code>.visible-phone</code></th>
498                 <td class="is-visible">Visible</td>
499                 <td class="is-hidden">Hidden</td>
500                 <td class="is-hidden">Hidden</td>
501               </tr>
502               <tr>
503                 <th><code>.visible-tablet</code></th>
504                 <td class="is-hidden">Hidden</td>
505                 <td class="is-visible">Visible</td>
506                 <td class="is-hidden">Hidden</td>
507               </tr>
508               <tr>
509                 <th><code>.visible-desktop</code></th>
510                 <td class="is-hidden">Hidden</td>
511                 <td class="is-hidden">Hidden</td>
512                 <td class="is-visible">Visible</td>
513               </tr>
514               <tr>
515                 <th><code>.hidden-phone</code></th>
516                 <td class="is-hidden">Hidden</td>
517                 <td class="is-visible">Visible</td>
518                 <td class="is-visible">Visible</td>
519               </tr>
520               <tr>
521                 <th><code>.hidden-tablet</code></th>
522                 <td class="is-visible">Visible</td>
523                 <td class="is-hidden">Hidden</td>
524                 <td class="is-visible">Visible</td>
525               </tr>
526               <tr>
527                 <th><code>.hidden-desktop</code></th>
528                 <td class="is-visible">Visible</td>
529                 <td class="is-visible">Visible</td>
530                 <td class="is-hidden">Hidden</td>
531               </tr>
532             </tbody>
533           </table>
534
535           <h3>When to use</h3>
536           <p>Use on a limited basis and avoid creating entirely different versions of the same site. Instead, use them to complement each device's presentation. Responsive utilities should not be used with tables, and as such are not supported.</p>
537
538           <h3>Responsive utilities test case</h3>
539           <p>Resize your browser or load on different devices to test the above classes.</p>
540           <h4>Visible on...</h4>
541           <p>Green checkmarks indicate that class is visible in your current viewport.</p>
542           <ul class="responsive-utilities-test">
543             <li>Phone<span class="visible-phone">&#10004; Phone</span></li>
544             <li>Tablet<span class="visible-tablet">&#10004; Tablet</span></li>
545             <li>Desktop<span class="visible-desktop">&#10004; Desktop</span></li>
546           </ul>
547           <h4>Hidden on...</h4>
548           <p>Here, green checkmarks indicate that class is hidden in your current viewport.</p>
549           <ul class="responsive-utilities-test hidden-on">
550             <li>Phone<span class="hidden-phone">&#10004; Phone</span></li>
551             <li>Tablet<span class="hidden-tablet">&#10004; Tablet</span></li>
552             <li>Desktop<span class="hidden-desktop">&#10004; Desktop</span></li>
553           </ul>
554
555         </section>
556
557
558
559       </div>
560     </div>
561
562   </div>
563
564
565
566     <!-- Footer
567     ================================================== -->
568     <footer class="footer">
569       <div class="container">
570         <p>Designed and built with all the love in the world by <a href="http://twitter.com/mdo" target="_blank">@mdo</a> and <a href="http://twitter.com/fat" target="_blank">@fat</a>.</p>
571         <p>Code licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License v2.0</a>, documentation under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p>
572         <p><a href="http://glyphicons.com">Glyphicons Free</a> licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p>
573         <ul class="footer-links">
574           <li><a href="http://blog.getbootstrap.com">Blog</a></li>
575           <li class="muted">&middot;</li>
576           <li><a href="https://github.com/twbs/bootstrap/issues?state=open">Issues</a></li>
577           <li class="muted">&middot;</li>
578           <li><a href="https://github.com/twbs/bootstrap/releases">Changelog</a></li>
579         </ul>
580       </div>
581     </footer>
582
583
584
585     <!-- Le javascript
586     ================================================== -->
587     <!-- Placed at the end of the document so the pages load faster -->
588     <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
589     <script src="assets/js/jquery.js"></script>
590     <script src="assets/js/bootstrap-transition.js"></script>
591     <script src="assets/js/bootstrap-alert.js"></script>
592     <script src="assets/js/bootstrap-modal.js"></script>
593     <script src="assets/js/bootstrap-dropdown.js"></script>
594     <script src="assets/js/bootstrap-scrollspy.js"></script>
595     <script src="assets/js/bootstrap-tab.js"></script>
596     <script src="assets/js/bootstrap-tooltip.js"></script>
597     <script src="assets/js/bootstrap-popover.js"></script>
598     <script src="assets/js/bootstrap-button.js"></script>
599     <script src="assets/js/bootstrap-collapse.js"></script>
600     <script src="assets/js/bootstrap-carousel.js"></script>
601     <script src="assets/js/bootstrap-typeahead.js"></script>
602     <script src="assets/js/bootstrap-affix.js"></script>
603
604     <script src="assets/js/holder/holder.js"></script>
605     <script src="assets/js/google-code-prettify/prettify.js"></script>
606
607     <script src="assets/js/application.js"></script>
608
609
610     <!-- Analytics
611     ================================================== -->
612     <script>
613       var _gauges = _gauges || [];
614       (function() {
615         var t   = document.createElement('script');
616         t.type  = 'text/javascript';
617         t.async = true;
618         t.id    = 'gauges-tracker';
619         t.setAttribute('data-site-id', '4f0dc9fef5a1f55508000013');
620         t.src = '//secure.gaug.es/track.js';
621         var s = document.getElementsByTagName('script')[0];
622         s.parentNode.insertBefore(t, s);
623       })();
624     </script>
625
626   </body>
627 </html>