twigg-app 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/data/quips.yml +45 -0
- data/lib/twigg-app/app/quips.rb +13 -0
- data/lib/twigg-app/app/routes.rb +43 -0
- data/lib/twigg-app/app/server.rb +146 -0
- data/lib/twigg-app/app/version.rb +5 -0
- data/lib/twigg-app/app.rb +14 -0
- data/lib/twigg-app.rb +5 -0
- data/public/application.js +106 -0
- data/public/favicon.ico +0 -0
- data/public/favicon.png +0 -0
- data/public/vendor/bootstrap/CNAME +1 -0
- data/public/vendor/bootstrap/CONTRIBUTING.md +66 -0
- data/public/vendor/bootstrap/Gruntfile.js +195 -0
- data/public/vendor/bootstrap/LICENSE +176 -0
- data/public/vendor/bootstrap/README.md +139 -0
- data/public/vendor/bootstrap/_config.yml +28 -0
- data/public/vendor/bootstrap/_includes/ads.html +1 -0
- data/public/vendor/bootstrap/_includes/footer.html +33 -0
- data/public/vendor/bootstrap/_includes/header.html +43 -0
- data/public/vendor/bootstrap/_includes/nav-components.html +135 -0
- data/public/vendor/bootstrap/_includes/nav-css.html +77 -0
- data/public/vendor/bootstrap/_includes/nav-customize.html +40 -0
- data/public/vendor/bootstrap/_includes/nav-getting-started.html +28 -0
- data/public/vendor/bootstrap/_includes/nav-javascript.html +88 -0
- data/public/vendor/bootstrap/_includes/nav-main.html +32 -0
- data/public/vendor/bootstrap/_includes/old-bs-docs.html +8 -0
- data/public/vendor/bootstrap/_includes/social-buttons.html +16 -0
- data/public/vendor/bootstrap/_layouts/customize.html +52 -0
- data/public/vendor/bootstrap/_layouts/default.html +72 -0
- data/public/vendor/bootstrap/_layouts/home.html +43 -0
- data/public/vendor/bootstrap/assets/css/docs.css +896 -0
- data/public/vendor/bootstrap/assets/css/pygments-manni.css +66 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png +0 -0
- data/public/vendor/bootstrap/assets/ico/favicon.png +0 -0
- data/public/vendor/bootstrap/assets/js/application.js +82 -0
- data/public/vendor/bootstrap/assets/js/customizer.js +175 -0
- data/public/vendor/bootstrap/assets/js/holder.js +419 -0
- data/public/vendor/bootstrap/assets/js/html5shiv.js +8 -0
- data/public/vendor/bootstrap/assets/js/jquery.bbq.min.js +1287 -0
- data/public/vendor/bootstrap/assets/js/jquery.js +5 -0
- data/public/vendor/bootstrap/assets/js/jszip.js +1425 -0
- data/public/vendor/bootstrap/assets/js/less.js +9 -0
- data/public/vendor/bootstrap/assets/js/respond.min.js +6 -0
- data/public/vendor/bootstrap/assets/js/uglify.js +14 -0
- data/public/vendor/bootstrap/bower.json +11 -0
- data/public/vendor/bootstrap/browserstack.json +37 -0
- data/public/vendor/bootstrap/components.html +2555 -0
- data/public/vendor/bootstrap/composer.json +20 -0
- data/public/vendor/bootstrap/css.html +2276 -0
- data/public/vendor/bootstrap/customize.html +1480 -0
- data/public/vendor/bootstrap/dist/css/bootstrap.css +5579 -0
- data/public/vendor/bootstrap/dist/css/bootstrap.min.css +9 -0
- data/public/vendor/bootstrap/dist/js/bootstrap.js +1993 -0
- data/public/vendor/bootstrap/dist/js/bootstrap.min.js +6 -0
- data/public/vendor/bootstrap/getting-started.html +375 -0
- data/public/vendor/bootstrap/index.html +16 -0
- data/public/vendor/bootstrap/javascript.html +1904 -0
- data/public/vendor/bootstrap/js/affix.js +126 -0
- data/public/vendor/bootstrap/js/alert.js +98 -0
- data/public/vendor/bootstrap/js/button.js +109 -0
- data/public/vendor/bootstrap/js/carousel.js +217 -0
- data/public/vendor/bootstrap/js/collapse.js +179 -0
- data/public/vendor/bootstrap/js/dropdown.js +154 -0
- data/public/vendor/bootstrap/js/modal.js +244 -0
- data/public/vendor/bootstrap/js/popover.js +117 -0
- data/public/vendor/bootstrap/js/scrollspy.js +158 -0
- data/public/vendor/bootstrap/js/tab.js +135 -0
- data/public/vendor/bootstrap/js/tests/index.html +52 -0
- data/public/vendor/bootstrap/js/tests/phantom.js +63 -0
- data/public/vendor/bootstrap/js/tests/server.js +14 -0
- data/public/vendor/bootstrap/js/tests/unit/affix.js +25 -0
- data/public/vendor/bootstrap/js/tests/unit/alert.js +62 -0
- data/public/vendor/bootstrap/js/tests/unit/button.js +116 -0
- data/public/vendor/bootstrap/js/tests/unit/carousel.js +87 -0
- data/public/vendor/bootstrap/js/tests/unit/collapse.js +164 -0
- data/public/vendor/bootstrap/js/tests/unit/dropdown.js +219 -0
- data/public/vendor/bootstrap/js/tests/unit/modal.js +177 -0
- data/public/vendor/bootstrap/js/tests/unit/phantom.js +69 -0
- data/public/vendor/bootstrap/js/tests/unit/popover.js +133 -0
- data/public/vendor/bootstrap/js/tests/unit/scrollspy.js +37 -0
- data/public/vendor/bootstrap/js/tests/unit/tab.js +86 -0
- data/public/vendor/bootstrap/js/tests/unit/tooltip.js +437 -0
- data/public/vendor/bootstrap/js/tests/unit/transition.js +13 -0
- data/public/vendor/bootstrap/js/tests/vendor/jquery.js +5 -0
- data/public/vendor/bootstrap/js/tests/vendor/qunit.css +232 -0
- data/public/vendor/bootstrap/js/tests/vendor/qunit.js +1510 -0
- data/public/vendor/bootstrap/js/tooltip.js +382 -0
- data/public/vendor/bootstrap/js/transition.js +56 -0
- data/public/vendor/bootstrap/less/alerts.less +71 -0
- data/public/vendor/bootstrap/less/badges.less +51 -0
- data/public/vendor/bootstrap/less/bootstrap.less +63 -0
- data/public/vendor/bootstrap/less/breadcrumbs.less +23 -0
- data/public/vendor/bootstrap/less/button-groups.less +244 -0
- data/public/vendor/bootstrap/less/buttons.less +159 -0
- data/public/vendor/bootstrap/less/carousel.less +204 -0
- data/public/vendor/bootstrap/less/close.less +33 -0
- data/public/vendor/bootstrap/less/code.less +56 -0
- data/public/vendor/bootstrap/less/component-animations.less +29 -0
- data/public/vendor/bootstrap/less/dropdowns.less +176 -0
- data/public/vendor/bootstrap/less/forms.less +332 -0
- data/public/vendor/bootstrap/less/grid.less +340 -0
- data/public/vendor/bootstrap/less/input-groups.less +127 -0
- data/public/vendor/bootstrap/less/jumbotron.less +29 -0
- data/public/vendor/bootstrap/less/labels.less +54 -0
- data/public/vendor/bootstrap/less/list-group.less +88 -0
- data/public/vendor/bootstrap/less/media.less +56 -0
- data/public/vendor/bootstrap/less/mixins.less +693 -0
- data/public/vendor/bootstrap/less/modals.less +133 -0
- data/public/vendor/bootstrap/less/navbar.less +559 -0
- data/public/vendor/bootstrap/less/navs.less +228 -0
- data/public/vendor/bootstrap/less/normalize.less +396 -0
- data/public/vendor/bootstrap/less/pager.less +55 -0
- data/public/vendor/bootstrap/less/pagination.less +72 -0
- data/public/vendor/bootstrap/less/panels.less +128 -0
- data/public/vendor/bootstrap/less/popovers.less +133 -0
- data/public/vendor/bootstrap/less/print.less +100 -0
- data/public/vendor/bootstrap/less/progress-bars.less +99 -0
- data/public/vendor/bootstrap/less/responsive-utilities.less +149 -0
- data/public/vendor/bootstrap/less/scaffolding.less +111 -0
- data/public/vendor/bootstrap/less/tables.less +211 -0
- data/public/vendor/bootstrap/less/thumbnails.less +42 -0
- data/public/vendor/bootstrap/less/tooltip.less +95 -0
- data/public/vendor/bootstrap/less/type.less +238 -0
- data/public/vendor/bootstrap/less/utilities.less +42 -0
- data/public/vendor/bootstrap/less/variables.less +607 -0
- data/public/vendor/bootstrap/less/wells.less +29 -0
- data/public/vendor/bootstrap/package.json +33 -0
- data/public/vendor/bootstrap-glyphicons/CHANGELOG.md +3 -0
- data/public/vendor/bootstrap-glyphicons/CNAME +1 -0
- data/public/vendor/bootstrap-glyphicons/CONTRIBUTING.md +54 -0
- data/public/vendor/bootstrap-glyphicons/LICENSE +19 -0
- data/public/vendor/bootstrap-glyphicons/README.md +61 -0
- data/public/vendor/bootstrap-glyphicons/_config.yml +12 -0
- data/public/vendor/bootstrap-glyphicons/composer.json +9 -0
- data/public/vendor/bootstrap-glyphicons/css/bootstrap-glyphicons.css +2 -0
- data/public/vendor/bootstrap-glyphicons/css/bootstrap.css +9 -0
- data/public/vendor/bootstrap-glyphicons/css/docs.css +160 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.eot +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.otf +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.svg +175 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.ttf +0 -0
- data/public/vendor/bootstrap-glyphicons/fonts/glyphiconshalflings-regular.woff +0 -0
- data/public/vendor/bootstrap-glyphicons/index.html +255 -0
- data/public/vendor/bootstrap-glyphicons/less/bootstrap-glyphicons.less +201 -0
- data/public/vendor/bootstrap-glyphicons/package.json +18 -0
- data/public/vendor/d3/LICENSE +26 -0
- data/public/vendor/d3/README.md +7 -0
- data/public/vendor/d3/bower.json +25 -0
- data/public/vendor/d3/d3.js +8810 -0
- data/public/vendor/d3/d3.min.js +5 -0
- data/public/vendor/jquery/README.md +11 -0
- data/public/vendor/jquery/bower.json +11 -0
- data/public/vendor/jquery/component.json +15 -0
- data/public/vendor/jquery/composer.json +35 -0
- data/public/vendor/jquery/jquery-migrate.js +511 -0
- data/public/vendor/jquery/jquery-migrate.min.js +3 -0
- data/public/vendor/jquery/jquery.js +8829 -0
- data/public/vendor/jquery/jquery.min.js +6 -0
- data/public/vendor/jquery/jquery.min.map +1 -0
- data/public/vendor/jquery/package.json +7 -0
- data/public/vendor/replacejs/CHANGELOG.md +3 -0
- data/public/vendor/replacejs/MIT-LICENSE.txt +20 -0
- data/public/vendor/replacejs/README.md +123 -0
- data/public/vendor/replacejs/bower.json +24 -0
- data/public/vendor/replacejs/primer.js +17 -0
- data/public/vendor/replacejs/primer.min.js +1 -0
- data/public/vendor/replacejs/replace.js +182 -0
- data/public/vendor/stupidtable.js +158 -0
- data/views/dashboard.haml +17 -0
- data/views/layout.haml +60 -0
- metadata +330 -0
@@ -0,0 +1,40 @@
|
|
1
|
+
<li>
|
2
|
+
<a href="#less">LESS components</a>
|
3
|
+
</li>
|
4
|
+
<li>
|
5
|
+
<a href="#plugins">jQuery plugins</a>
|
6
|
+
</li>
|
7
|
+
<li>
|
8
|
+
<a href="#less-variables">LESS variables</a>
|
9
|
+
<ul class="nav">
|
10
|
+
<li><a href="#variables-basics">Basics</a></li>
|
11
|
+
<li><a href="#variables-buttons">Buttons</a></li>
|
12
|
+
<li><a href="#variables-form-states">Form states</a></li>
|
13
|
+
<li><a href="#variables-alerts">Alerts</a></li>
|
14
|
+
<li><a href="#variables-navbar">Navbar</a></li>
|
15
|
+
<li><a href="#variables-nav">Nav</a></li>
|
16
|
+
<li><a href="#variables-tables">Tables</a></li>
|
17
|
+
<li><a href="#variables-forms">Forms</a></li>
|
18
|
+
<li><a href="#variables-dropdowns">Dropdowns</a></li>
|
19
|
+
<li><a href="#variables-panels-wells">Panels and wells</a></li>
|
20
|
+
<li><a href="#variables-accordion">Accordion</a></li>
|
21
|
+
<li><a href="#variables-badges">Badges</a></li>
|
22
|
+
<li><a href="#variables-breadcrumbs">Breadcrumbs</a></li>
|
23
|
+
<li><a href="#variables-jumbotron">Jumbotron</a></li>
|
24
|
+
<li><a href="#variables-modals">Modals</a></li>
|
25
|
+
<li><a href="#variables-carousel">Carousel</a></li>
|
26
|
+
<li><a href="#variables-list-group">List group</a></li>
|
27
|
+
<li><a href="#variables-thumbnails">Thumbnails</a></li>
|
28
|
+
<li><a href="#variables-progress">Progress bars</a></li>
|
29
|
+
<li><a href="#variables-pagination">Pagination</a></li>
|
30
|
+
<li><a href="#variables-pager">Pager</a></li>
|
31
|
+
<li><a href="#variables-labels">Labels</a></li>
|
32
|
+
<li><a href="#variables-tooltips-popovers">Tooltips and popovers</a></li>
|
33
|
+
<li><a href="#variables-close">Close button</a></li>
|
34
|
+
<li><a href="#variables-type">Type</a></li>
|
35
|
+
<li><a href="#variables-other">Other</a></li>
|
36
|
+
</ul>
|
37
|
+
</li>
|
38
|
+
<li>
|
39
|
+
<a href="#download">Download</a>
|
40
|
+
</li>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<li>
|
2
|
+
<a href="#download">Download Bootstrap</a>
|
3
|
+
<ul class="nav">
|
4
|
+
<li><a href="#download-options">Download options</a></li>
|
5
|
+
<li><a href="#download-cdn">Bootstrap CDN</a></li>
|
6
|
+
</ul>
|
7
|
+
</li>
|
8
|
+
<li>
|
9
|
+
<a href="#whats-included">What's included</a>
|
10
|
+
</li>
|
11
|
+
<li>
|
12
|
+
<a href="#template">Basic template</a>
|
13
|
+
</li>
|
14
|
+
<li>
|
15
|
+
<a href="#browsers">Browser support</a>
|
16
|
+
</li>
|
17
|
+
<li>
|
18
|
+
<a href="#third-parties">Third party support</a>
|
19
|
+
</li>
|
20
|
+
<li>
|
21
|
+
<a href="#accessibility">Accessibility</a>
|
22
|
+
</li>
|
23
|
+
<li>
|
24
|
+
<a href="#license-faqs">License FAQs</a>
|
25
|
+
</li>
|
26
|
+
<li>
|
27
|
+
<a href="#customizing">Customizing Bootstrap</a>
|
28
|
+
</li>
|
@@ -0,0 +1,88 @@
|
|
1
|
+
<li>
|
2
|
+
<a href="#js-overview">Overview</a>
|
3
|
+
<ul class="nav">
|
4
|
+
<li><a href="#js-individual-compiled">Individual or compiled</a></li>
|
5
|
+
<li><a href="#js-data-attrs">Data attributes</a></li>
|
6
|
+
<li><a href="#js-programmatic-api">Programmatic API</a></li>
|
7
|
+
<li><a href="#js-noconflict">No Conflict</a></li>
|
8
|
+
<li><a href="#js-events">Events</a></li>
|
9
|
+
</ul>
|
10
|
+
</li>
|
11
|
+
<li><a href="#transitions">Transitions</a></li>
|
12
|
+
<li>
|
13
|
+
<a href="#modals">Modal</a>
|
14
|
+
<ul class="nav">
|
15
|
+
<li><a href="#modals-examples">Examples</a></li>
|
16
|
+
<li><a href="#modals-usage">Usage</a></li>
|
17
|
+
</ul>
|
18
|
+
</li>
|
19
|
+
<li>
|
20
|
+
<a href="#dropdowns">Dropdown</a>
|
21
|
+
<ul class="nav">
|
22
|
+
<li><a href="#dropdowns-examples">Examples</a></li>
|
23
|
+
<li><a href="#dropdowns-usage">Usage</a></li>
|
24
|
+
</ul>
|
25
|
+
</li>
|
26
|
+
<li>
|
27
|
+
<a href="#scrollspy">Scrollspy</a>
|
28
|
+
<ul class="nav">
|
29
|
+
<li><a href="#scrollspy-examples">Examples</a></li>
|
30
|
+
<li><a href="#scrollspy-usage">Usage</a></li>
|
31
|
+
</ul>
|
32
|
+
</li>
|
33
|
+
<li>
|
34
|
+
<a href="#tabs">Tab</a>
|
35
|
+
<ul class="nav">
|
36
|
+
<li><a href="#tabs-examples">Examples</a></li>
|
37
|
+
<li><a href="#tabs-usage">Usage</a></li>
|
38
|
+
</ul>
|
39
|
+
</li>
|
40
|
+
<li>
|
41
|
+
<a href="#tooltips">Tooltip</a>
|
42
|
+
<ul class="nav">
|
43
|
+
<li><a href="#tooltips-examples">Examples</a></li>
|
44
|
+
<li><a href="#tooltips-usage">Usage</a></li>
|
45
|
+
</ul>
|
46
|
+
</li>
|
47
|
+
<li>
|
48
|
+
<a href="#popovers">Popover</a>
|
49
|
+
<ul class="nav">
|
50
|
+
<li><a href="#popovers-examples">Examples</a></li>
|
51
|
+
<li><a href="#popovers-usage">Usage</a></li>
|
52
|
+
</ul>
|
53
|
+
</li>
|
54
|
+
<li>
|
55
|
+
<a href="#alerts">Alert</a>
|
56
|
+
<ul class="nav">
|
57
|
+
<li><a href="#alerts-examples">Examples</a></li>
|
58
|
+
<li><a href="#alerts-usage">Usage</a></li>
|
59
|
+
</ul>
|
60
|
+
</li>
|
61
|
+
<li>
|
62
|
+
<a href="#buttons">Button</a>
|
63
|
+
<ul class="nav">
|
64
|
+
<li><a href="#buttons-examples">Examples</a></li>
|
65
|
+
<li><a href="#buttons-usage">Usage</a></li>
|
66
|
+
</ul>
|
67
|
+
</li>
|
68
|
+
<li>
|
69
|
+
<a href="#collapse">Collapse</a>
|
70
|
+
<ul class="nav">
|
71
|
+
<li><a href="#collapse-examples">Examples</a></li>
|
72
|
+
<li><a href="#collapse-usage">Usage</a></li>
|
73
|
+
</ul>
|
74
|
+
</li>
|
75
|
+
<li>
|
76
|
+
<a href="#carousel">Carousel</a>
|
77
|
+
<ul class="nav">
|
78
|
+
<li><a href="#carousel-examples">Examples</a></li>
|
79
|
+
<li><a href="#carousel-usage">Usage</a></li>
|
80
|
+
</ul>
|
81
|
+
</li>
|
82
|
+
<li>
|
83
|
+
<a href="#affix">Affix</a>
|
84
|
+
<ul class="nav">
|
85
|
+
<li><a href="#affix-examples">Examples</a></li>
|
86
|
+
<li><a href="#affix-usage">Usage</a></li>
|
87
|
+
</ul>
|
88
|
+
</li>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<header class="navbar navbar-inverse navbar-fixed-top bs-docs-nav" role="banner">
|
2
|
+
<div class="container">
|
3
|
+
<div class="navbar-header">
|
4
|
+
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
|
5
|
+
<span class="sr-only">Toggle navigation</span>
|
6
|
+
<span class="icon-bar"></span>
|
7
|
+
<span class="icon-bar"></span>
|
8
|
+
<span class="icon-bar"></span>
|
9
|
+
</button>
|
10
|
+
<a href="{{ page.base_url }}" class="navbar-brand">Bootstrap 3 RC2</a>
|
11
|
+
</div>
|
12
|
+
<nav class="collapse navbar-collapse bs-navbar-collapse" role="navigation">
|
13
|
+
<ul class="nav navbar-nav">
|
14
|
+
<li{% if page.slug == "getting-started" %} class="active"{% endif %}>
|
15
|
+
<a href="{{ page.base_url }}getting-started">Getting started</a>
|
16
|
+
</li>
|
17
|
+
<li{% if page.slug == "css" %} class="active"{% endif %}>
|
18
|
+
<a href="{{ page.base_url }}css">CSS</a>
|
19
|
+
</li>
|
20
|
+
<li{% if page.slug == "components" %} class="active"{% endif %}>
|
21
|
+
<a href="{{ page.base_url }}components">Components</a>
|
22
|
+
</li>
|
23
|
+
<li{% if page.slug == "js" %} class="active"{% endif %}>
|
24
|
+
<a href="{{ page.base_url }}javascript">JavaScript</a>
|
25
|
+
</li>
|
26
|
+
<li{% if page.slug == "customize" %} class="active"{% endif %}>
|
27
|
+
<a href="{{ page.base_url }}customize">Customize</a>
|
28
|
+
</li>
|
29
|
+
</ul>
|
30
|
+
</nav>
|
31
|
+
</div>
|
32
|
+
</header>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<div class="bs-old-docs">
|
2
|
+
<div class="container">
|
3
|
+
<strong>
|
4
|
+
<a href="{{ page.base_url }}2.3.2/">Looking for Bootstrap 2.3.2 docs?</a>
|
5
|
+
</strong>
|
6
|
+
We've moved it to a new home while we push forward with Bootstrap 3. <a href="http://blog.getbootstrap.com/">Read the blog</a> for details.
|
7
|
+
</div>
|
8
|
+
</div>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<div class="bs-social">
|
2
|
+
<ul class="bs-social-buttons">
|
3
|
+
<li>
|
4
|
+
<iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twbs&repo=bootstrap&type=watch&count=true" width="100" height="20" title="Star on GitHub"></iframe>
|
5
|
+
</li>
|
6
|
+
<li>
|
7
|
+
<iframe class="github-btn" src="http://ghbtns.com/github-btn.html?user=twbs&repo=bootstrap&type=fork&count=true" width="102" height="20" title="Fork on GitHub"></iframe>
|
8
|
+
</li>
|
9
|
+
<li class="follow-btn">
|
10
|
+
<a href="https://twitter.com/twbootstrap" class="twitter-follow-button" data-link-color="#0069D6" data-show-count="true">Follow @twbootstrap</a>
|
11
|
+
</li>
|
12
|
+
<li class="tweet-btn">
|
13
|
+
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://twbs.github.com/bootstrap/" data-count="horizontal" data-via="twbootstrap" data-related="mdo:Creator of Twitter Bootstrap">Tweet</a>
|
14
|
+
</li>
|
15
|
+
</ul>
|
16
|
+
</div>
|
@@ -0,0 +1,52 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<!-- Meta, title, CSS, favicons, etc. -->
|
5
|
+
{% include header.html %}
|
6
|
+
<!-- Place anything custom after this. -->
|
7
|
+
</head>
|
8
|
+
<body data-spy="scroll" data-target=".bs-sidebar">
|
9
|
+
<a class="sr-only" href="#content">Skip navigation</a>
|
10
|
+
|
11
|
+
<!-- Docs master nav -->
|
12
|
+
{% include nav-main.html %}
|
13
|
+
|
14
|
+
<!-- Docs page layout -->
|
15
|
+
<div class="bs-header" id="content" role="banner">
|
16
|
+
<div class="container">
|
17
|
+
<h1>{{ page.title }}</h1>
|
18
|
+
<p>{{ page.lead }}</p>
|
19
|
+
{% include ads.html %}
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<!-- Callout for the old docs link -->
|
24
|
+
{% include old-bs-docs.html %}
|
25
|
+
|
26
|
+
<div class="container bs-docs-container">
|
27
|
+
<div class="col-lg-12">
|
28
|
+
{{ content }}
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
|
32
|
+
<!-- Footer
|
33
|
+
================================================== -->
|
34
|
+
<footer class="bs-footer">
|
35
|
+
{% include social-buttons.html %}
|
36
|
+
|
37
|
+
<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>
|
38
|
+
<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>
|
39
|
+
<ul class="footer-links">
|
40
|
+
<li><a href="{{ site.blog }}">Blog</a></li>
|
41
|
+
<li class="muted">·</li>
|
42
|
+
<li><a href="{{ site.repo }}/issues?state=open">Issues</a></li>
|
43
|
+
<li class="muted">·</li>
|
44
|
+
<li><a href="{{ site.repo }}/releases">Releases</a></li>
|
45
|
+
</ul>
|
46
|
+
</footer>
|
47
|
+
|
48
|
+
<!-- JS and analytics only. -->
|
49
|
+
{% include footer.html %}
|
50
|
+
|
51
|
+
</body>
|
52
|
+
</html>
|
@@ -0,0 +1,72 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<!-- Meta, title, CSS, favicons, etc. -->
|
5
|
+
{% include header.html %}
|
6
|
+
<!-- Place anything custom after this. -->
|
7
|
+
</head>
|
8
|
+
<body>
|
9
|
+
<a class="sr-only" href="#content">Skip navigation</a>
|
10
|
+
|
11
|
+
<!-- Docs master nav -->
|
12
|
+
{% include nav-main.html %}
|
13
|
+
|
14
|
+
<!-- Docs page layout -->
|
15
|
+
<div class="bs-header" id="content">
|
16
|
+
<div class="container">
|
17
|
+
<h1>{{ page.title }}</h1>
|
18
|
+
<p>{{ page.lead }}</p>
|
19
|
+
{% include ads.html %}
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<!-- Callout for the old docs link -->
|
24
|
+
{% include old-bs-docs.html %}
|
25
|
+
|
26
|
+
<div class="container bs-docs-container">
|
27
|
+
<div class="row">
|
28
|
+
<div class="col-md-3">
|
29
|
+
<aside class="bs-sidebar" role="complementary">
|
30
|
+
<ul class="nav bs-sidenav">
|
31
|
+
{% if page.slug == "getting-started" %}
|
32
|
+
{% include nav-getting-started.html %}
|
33
|
+
{% elsif page.slug == "css" %}
|
34
|
+
{% include nav-css.html %}
|
35
|
+
{% elsif page.slug == "components" %}
|
36
|
+
{% include nav-components.html %}
|
37
|
+
{% elsif page.slug == "js" %}
|
38
|
+
{% include nav-javascript.html %}
|
39
|
+
{% elsif page.slug == "customize" %}
|
40
|
+
{% include nav-customize.html %}
|
41
|
+
{% endif %}
|
42
|
+
</ul>
|
43
|
+
</aside>
|
44
|
+
</div>
|
45
|
+
<main class="col-md-9" role="main">
|
46
|
+
{{ content }}
|
47
|
+
</main>
|
48
|
+
</div>
|
49
|
+
|
50
|
+
</div>
|
51
|
+
|
52
|
+
<!-- Footer
|
53
|
+
================================================== -->
|
54
|
+
<footer class="bs-footer" role="contentinfo">
|
55
|
+
{% include social-buttons.html %}
|
56
|
+
|
57
|
+
<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>
|
58
|
+
<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>
|
59
|
+
<ul class="footer-links">
|
60
|
+
<li><a href="{{ site.blog }}">Blog</a></li>
|
61
|
+
<li class="muted">·</li>
|
62
|
+
<li><a href="{{ site.repo }}/issues?state=open">Issues</a></li>
|
63
|
+
<li class="muted">·</li>
|
64
|
+
<li><a href="{{ site.repo }}/releases">Releases</a></li>
|
65
|
+
</ul>
|
66
|
+
</footer>
|
67
|
+
|
68
|
+
<!-- JS and analytics only. -->
|
69
|
+
{% include footer.html %}
|
70
|
+
|
71
|
+
</body>
|
72
|
+
</html>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<!-- Meta, title, CSS, favicons, etc. -->
|
5
|
+
{% include header.html %}
|
6
|
+
<!-- Place anything custom after this. -->
|
7
|
+
</head>
|
8
|
+
<body class="bs-docs-home">
|
9
|
+
<a class="sr-only" href="#content">Skip navigation</a>
|
10
|
+
|
11
|
+
<!-- Docs master nav -->
|
12
|
+
{% include nav-main.html %}
|
13
|
+
|
14
|
+
<!-- Page content of course! -->
|
15
|
+
{{ content }}
|
16
|
+
|
17
|
+
<!-- Callout for the old docs link -->
|
18
|
+
{% include old-bs-docs.html %}
|
19
|
+
|
20
|
+
<footer class="container" role="contentinfo">
|
21
|
+
{% include social-buttons.html %}
|
22
|
+
|
23
|
+
<ul class="bs-masthead-links">
|
24
|
+
<li>
|
25
|
+
<a href="{{ site.repo }}" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Jumbotron links', 'GitHub project']);">GitHub project</a>
|
26
|
+
</li>
|
27
|
+
<li>
|
28
|
+
<a href="{{ site.examples }}" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Jumbotron links', 'Examples']);">Examples</a>
|
29
|
+
</li>
|
30
|
+
<li>
|
31
|
+
<a href="{{ site.glyphicons }}" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Jumbotron links', 'Glyphicons']);">Glyphicons</a>
|
32
|
+
</li>
|
33
|
+
<li>
|
34
|
+
<a href="{{ site.expo }}" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Jumbotron links', 'Expo']);">Bootstrap Expo</a>
|
35
|
+
</li>
|
36
|
+
</ul>
|
37
|
+
</footer>
|
38
|
+
|
39
|
+
<!-- JS and analytics only. -->
|
40
|
+
{% include footer.html %}
|
41
|
+
|
42
|
+
</body>
|
43
|
+
</html>
|