This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
_generator-settings.html
169 lines (140 loc) · 6.33 KB
/
_generator-settings.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<style media="screen">
h3, h4 {
color: #cbbde2;
}
strong {
color: #563d7c;
text-decoration: underline;
}
</style>
<form onsubmit="assistant.finish(); return false;">
<section>
<h3>Choose a Bootstrap Template</h3>
<p>Quickly get a project started with any of the 20 templates below. The templates range from using parts of the framework to custom components and layouts as well as Bootstrap experiments.</p>
<h4>Framework</h4>
<p>Examples that focus on implementing uses of built-in components provided by Bootstrap.</p>
<br>
<input type="radio" name="base" value="starter" checked="true">
<strong>Starter</strong>
<span>Nothing but the basics: compiled CSS and JavaScript and navbar.</span>
<br/>
<input type="radio" name="base" value="grid">
<strong>Grid</strong>
<span>Multiple examples of grid layouts with all four tiers, nesting, and more.</span>
<br/>
<input type="radio" name="base" value="jumbotron">
<strong>Jumbotron</strong>
<span>Build around the jumbotron with a navbar and some basic grid columns.</span>
<h4>Custom Components</h4>
<p>Brand new components and templates to help you quickly get started with Bootstrap and demonstrate best practices for adding onto the framework.</p>
<br>
<input type="radio" name="base" value="album">
<strong>Album</strong>
<span>Simple one-page template for photo galleries, portfolios, and more.</span>
<br/>
<input type="radio" name="base" value="pricing">
<strong>Pricing</strong>
<span>Example pricing page built with Cards and featuring a custom header and footer.</span>
<br/>
<input type="radio" name="base" value="checkout">
<strong>Checkout</strong>
<span>Custom checkout form showing our form components and their validation features.</span>
<br/>
<input type="radio" name="base" value="product">
<strong>Product</strong>
<span>Lean product-focused marketing page with extensive grid and image work.</span>
<br/>
<input type="radio" name="base" value="cover">
<strong>Cover</strong>
<span>A one-page template for building simple and beautiful home pages.</span>
<br/>
<input type="radio" name="base" value="carousel">
<strong>Carousel</strong>
<span>Customize the navbar and carousel, then add some new components.</span>
<br/>
<input type="radio" name="base" value="blog">
<strong>Blog</strong>
<span>Magazine like blog template with header, navigation, featured content.</span>
<br/>
<input type="radio" name="base" value="dashboard">
<strong>Dashboard</strong>
<span>Basic admin dashboard shell with fixed sidebar and navbar.</span>
<br/>
<input type="radio" name="base" value="signin">
<strong>Sign-in</strong>
<span>Custom form layout and design for a simple sign in form.</span>
<br/>
<input type="radio" name="base" value="sticky">
<strong>Sticky Footer</strong>
<span>Attach a footer to the bottom of the viewport when page content is short.</span>
<br/>
<input type="radio" name="base" value="stickynav">
<strong>Sticky Footer Navbar</strong>
<span>Attach a footer to the bottom of the viewport with a fixed top navbar.</span>
<h4>Navbars</h4>
<p>Taking the default navbar component and showing how it can be moved, placed, and extended.</p>
<br>
<input type="radio" name="base" value="navbars">
<strong>Navbars</strong>
<span>Demonstration of all responsive and container options for the navbar.</span>
<br/>
<input type="radio" name="base" value="navbarstatic">
<strong>Navbar Static</strong>
<span>Single navbar example of a static top navbar along with some additional content.</span>
<br/>
<input type="radio" name="base" value="navbarfixed">
<strong>Navbar Fixed</strong>
<span>Single navbar example with a fixed top navbar along with some additional content.</span>
<br/>
<input type="radio" name="base" value="navbarbottom">
<strong>Navbar Bottom</strong>
<span>Single navbar example with a bottom navbar along with some additional content.</span>
<br/>
<h4>Experiments</h4>
<p>Examples that focus on future-friendly features or techniques.</p>
<br>
<input type="radio" name="base" value="floating">
<strong>Floating Labels</strong>
<span>Beautifully simple forms with floating labels over your inputs.</span>
<br/>
<input type="radio" name="base" value="offcanvas">
<strong>Offcanvas</strong>
<span>Turn your expandable navbar into a sliding offcanvas menu.</span>
<br/>
</section>
<section>
<h3>Extras</h3>
<input type="checkbox" name="ieTags">
<strong>IE Classes</strong>
<span>Include classes in the markup for Internet Explorer 9?</span>
<br/>
<input type="checkbox" name="serverExtras" checked="true">
<strong>Server Extras</strong>
<span>Include .htaccess, robots.txt, humans.txt, etc.?</span>
<br/>
<input type="checkbox" name="ga" onclick="Bootstrap.toggle_gaSiteId();">
<strong>Google Analytics</strong>
<span>Insert markup for Site ID: <input type="text" name="ga_siteId"
placeholder="UA-XXXXX-X" disabled="true"></span>
<br/>
<input type="checkbox" name="fontAwesome">
<strong>Font Awesome</strong>
<span>Include Font Awesome, the world's most popular and easiest to use icon set?</span>
<br/>
</section>
</form>
<script>
window.Bootstrap = {
toggle_gaSiteId: function() {
var siteId = document.querySelector('input[name=ga_siteId]');
if (document.querySelector('input[name=ga]').checked) {
siteId.disabled = false;
siteId.focus();
} else {
siteId.disabled = true;
siteId.value = '';
}
return true;
}
};
</script>