frontend-generators 0.0.6 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +44 -0
  3. data/assets/clean_blog/app/assets/images/.keep +0 -0
  4. data/assets/clean_blog/app/assets/images/clean_blog/about-bg.jpg +0 -0
  5. data/assets/clean_blog/app/assets/images/clean_blog/contact-bg.jpg +0 -0
  6. data/assets/clean_blog/app/assets/images/clean_blog/home-bg.jpg +0 -0
  7. data/assets/clean_blog/app/assets/images/clean_blog/post-bg.jpg +0 -0
  8. data/assets/clean_blog/app/assets/images/clean_blog/post-sample-image.jpg +0 -0
  9. data/assets/clean_blog/app/assets/javascripts/clean_blog/clean-blog.js +1032 -0
  10. data/assets/clean_blog/app/assets/javascripts/clean_blog/manifest.js +6 -0
  11. data/assets/clean_blog/app/assets/stylesheets/clean_blog/clean-blog.css.scss +396 -0
  12. data/assets/clean_blog/app/assets/stylesheets/clean_blog/manifest.css +5 -0
  13. data/assets/clean_blog/app/controllers/clean_blogs_controller.rb +15 -0
  14. data/assets/clean_blog/app/helpers/clean_blogs_helper.rb +11 -0
  15. data/assets/clean_blog/app/views/clean_blogs/_footer.html.erb +35 -0
  16. data/assets/clean_blog/app/views/clean_blogs/_header.html.erb +61 -0
  17. data/assets/clean_blog/app/views/clean_blogs/_navigation.html.erb +34 -0
  18. data/assets/clean_blog/app/views/clean_blogs/_shim.html.erb +6 -0
  19. data/assets/clean_blog/app/views/clean_blogs/about.html.erb +20 -0
  20. data/assets/clean_blog/app/views/clean_blogs/contact.html.erb +58 -0
  21. data/assets/clean_blog/app/views/clean_blogs/index.html.erb +68 -0
  22. data/assets/clean_blog/app/views/clean_blogs/post.html.erb +52 -0
  23. data/assets/clean_blog/app/views/layouts/clean_blog.html.erb +16 -0
  24. data/assets/grayscale/app/assets/images/.keep +0 -0
  25. data/assets/grayscale/app/assets/images/grayscale/downloads-bg.jpg +0 -0
  26. data/assets/grayscale/app/assets/images/grayscale/intro-bg.jpg +0 -0
  27. data/assets/grayscale/app/assets/images/grayscale/map-marker.png +0 -0
  28. data/assets/grayscale/app/assets/javascripts/grayscale/grayscale.js +178 -0
  29. data/assets/grayscale/app/assets/javascripts/grayscale/jquery.easing.min.js +44 -0
  30. data/assets/grayscale/app/assets/javascripts/grayscale/manifest.js +7 -0
  31. data/assets/grayscale/app/assets/stylesheets/grayscale/grayscale.css +373 -0
  32. data/assets/grayscale/app/assets/stylesheets/grayscale/manifest.css +7 -0
  33. data/assets/grayscale/app/controllers/grayscales_controller.rb +5 -0
  34. data/assets/grayscale/app/views/grayscales/_about.html.erb +10 -0
  35. data/assets/grayscale/app/views/grayscales/_contact.html.erb +21 -0
  36. data/assets/grayscale/app/views/grayscales/_download.html.erb +11 -0
  37. data/assets/grayscale/app/views/grayscales/_footer.html.erb +5 -0
  38. data/assets/grayscale/app/views/grayscales/_header.html.erb +15 -0
  39. data/assets/grayscale/app/views/grayscales/_map.html.erb +8 -0
  40. data/assets/grayscale/app/views/grayscales/_navigation.html.erb +32 -0
  41. data/assets/grayscale/app/views/grayscales/_shim.html.erb +6 -0
  42. data/assets/grayscale/app/views/grayscales/index.html.erb +8 -0
  43. data/assets/grayscale/app/views/layouts/grayscale.html.erb +22 -0
  44. data/lib/frontend_generators/version.rb +1 -1
  45. data/lib/tasks/add_assets.rake +1 -1
  46. metadata +43 -2
@@ -0,0 +1,44 @@
1
+ /*
2
+ * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
3
+ *
4
+ * Uses the built in easing capabilities added In jQuery 1.1
5
+ * to offer multiple easing options
6
+ *
7
+ * TERMS OF USE - EASING EQUATIONS
8
+ *
9
+ * Open source under the BSD License.
10
+ *
11
+ * Copyright © 2001 Robert Penner
12
+ * All rights reserved.
13
+ *
14
+ * TERMS OF USE - jQuery Easing
15
+ *
16
+ * Open source under the BSD License.
17
+ *
18
+ * Copyright © 2008 George McGinley Smith
19
+ * All rights reserved.
20
+ *
21
+ * Redistribution and use in source and binary forms, with or without modification,
22
+ * are permitted provided that the following conditions are met:
23
+ *
24
+ * Redistributions of source code must retain the above copyright notice, this list of
25
+ * conditions and the following disclaimer.
26
+ * Redistributions in binary form must reproduce the above copyright notice, this list
27
+ * of conditions and the following disclaimer in the documentation and/or other materials
28
+ * provided with the distribution.
29
+ *
30
+ * Neither the name of the author nor the names of contributors may be used to endorse
31
+ * or promote products derived from this software without specific prior written permission.
32
+ *
33
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
34
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
35
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
36
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
37
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
38
+ * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
39
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
40
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
41
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
42
+ *
43
+ */
44
+ jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e},easeOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return g*Math.pow(2,-10*h)*Math.sin((h*k-i)*(2*Math.PI)/j)+l+e},easeInOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k/2)==2){return e+l}if(!j){j=k*(0.3*1.5)}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j)*0.5+l+e},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*(f/=h)*f*((g+1)*f-g)+a},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a}});
@@ -0,0 +1,7 @@
1
+ //= require jquery
2
+ //= require jquery_ujs
3
+ //= require bootstrap
4
+ //= require grayscale/grayscale
5
+ //= require grayscale/jquery.easing.min
6
+
7
+
@@ -0,0 +1,373 @@
1
+ /*!
2
+ * Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com)
3
+ * Code licensed under the Apache License v2.0.
4
+ * For details, see http://www.apache.org/licenses/LICENSE-2.0.
5
+ */
6
+
7
+ body {
8
+ width: 100%;
9
+ height: 100%;
10
+ font-family: Lora,"Helvetica Neue",Helvetica,Arial,sans-serif;
11
+ color: #fff;
12
+ background-color: #000;
13
+ }
14
+
15
+ html {
16
+ width: 100%;
17
+ height: 100%;
18
+ }
19
+
20
+ h1,
21
+ h2,
22
+ h3,
23
+ h4,
24
+ h5,
25
+ h6 {
26
+ margin: 0 0 35px;
27
+ text-transform: uppercase;
28
+ font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
29
+ font-weight: 700;
30
+ letter-spacing: 1px;
31
+ }
32
+
33
+ p {
34
+ margin: 0 0 25px;
35
+ font-size: 18px;
36
+ line-height: 1.5;
37
+ }
38
+
39
+ @media(min-width:768px) {
40
+ p {
41
+ margin: 0 0 35px;
42
+ font-size: 20px;
43
+ line-height: 1.6;
44
+ }
45
+ }
46
+
47
+ a {
48
+ color: #42dca3;
49
+ -webkit-transition: all .2s ease-in-out;
50
+ -moz-transition: all .2s ease-in-out;
51
+ transition: all .2s ease-in-out;
52
+ }
53
+
54
+ a:hover,
55
+ a:focus {
56
+ text-decoration: none;
57
+ color: #1d9b6c;
58
+ }
59
+
60
+ .light {
61
+ font-weight: 400;
62
+ }
63
+
64
+ .navbar-custom {
65
+ margin-bottom: 0;
66
+ border-bottom: 1px solid rgba(255,255,255,.3);
67
+ text-transform: uppercase;
68
+ font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
69
+ background-color: #000;
70
+ }
71
+
72
+ .navbar-custom .navbar-brand {
73
+ font-weight: 700;
74
+ }
75
+
76
+ .navbar-custom .navbar-brand:focus {
77
+ outline: 0;
78
+ }
79
+
80
+ .navbar-custom .navbar-brand .navbar-toggle {
81
+ padding: 4px 6px;
82
+ font-size: 16px;
83
+ color: #fff;
84
+ }
85
+
86
+ .navbar-custom .navbar-brand .navbar-toggle:focus,
87
+ .navbar-custom .navbar-brand .navbar-toggle:active {
88
+ outline: 0;
89
+ }
90
+
91
+ .navbar-custom a {
92
+ color: #fff;
93
+ }
94
+
95
+ .navbar-custom .nav li a {
96
+ -webkit-transition: background .3s ease-in-out;
97
+ -moz-transition: background .3s ease-in-out;
98
+ transition: background .3s ease-in-out;
99
+ }
100
+
101
+ .navbar-custom .nav li a:hover {
102
+ outline: 0;
103
+ color: rgba(255,255,255,.8);
104
+ background-color: transparent;
105
+ }
106
+
107
+ .navbar-custom .nav li a:focus,
108
+ .navbar-custom .nav li a:active {
109
+ outline: 0;
110
+ background-color: transparent;
111
+ }
112
+
113
+ .navbar-custom .nav li.active {
114
+ outline: 0;
115
+ }
116
+
117
+ .navbar-custom .nav li.active a {
118
+ background-color: rgba(255,255,255,.3);
119
+ }
120
+
121
+ .navbar-custom .nav li.active a:hover {
122
+ color: #fff;
123
+ }
124
+
125
+ @media(min-width:768px) {
126
+ .navbar-custom {
127
+ padding: 20px 0;
128
+ border-bottom: 0;
129
+ letter-spacing: 1px;
130
+ background: 0 0;
131
+ -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
132
+ -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
133
+ transition: background .5s ease-in-out,padding .5s ease-in-out;
134
+ }
135
+
136
+ .navbar-custom.top-nav-collapse {
137
+ padding: 0;
138
+ border-bottom: 1px solid rgba(255,255,255,.3);
139
+ background: #000;
140
+ }
141
+ }
142
+
143
+ .intro {
144
+ display: table;
145
+ width: 100%;
146
+ height: auto;
147
+ padding: 100px 0;
148
+ text-align: center;
149
+ color: #fff;
150
+ background: url('/assets/grayscale/intro-bg.jpg') no-repeat bottom center scroll;
151
+ background-color: #000;
152
+ -webkit-background-size: cover;
153
+ -moz-background-size: cover;
154
+ background-size: cover;
155
+ -o-background-size: cover;
156
+ }
157
+
158
+ .intro .intro-body {
159
+ display: table-cell;
160
+ vertical-align: middle;
161
+ }
162
+
163
+ .intro .intro-body .brand-heading {
164
+ font-size: 40px;
165
+ }
166
+
167
+ .intro .intro-body .intro-text {
168
+ font-size: 18px;
169
+ }
170
+
171
+ @media(min-width:768px) {
172
+ .intro {
173
+ height: 100%;
174
+ padding: 0;
175
+ }
176
+
177
+ .intro .intro-body .brand-heading {
178
+ font-size: 100px;
179
+ }
180
+
181
+ .intro .intro-body .intro-text {
182
+ font-size: 26px;
183
+ }
184
+ }
185
+
186
+ .btn-circle {
187
+ width: 70px;
188
+ height: 70px;
189
+ margin-top: 15px;
190
+ padding: 7px 16px;
191
+ border: 2px solid #fff;
192
+ border-radius: 100%!important;
193
+ font-size: 40px;
194
+ color: #fff;
195
+ background: 0 0;
196
+ -webkit-transition: background .3s ease-in-out;
197
+ -moz-transition: background .3s ease-in-out;
198
+ transition: background .3s ease-in-out;
199
+ }
200
+
201
+ .btn-circle:hover,
202
+ .btn-circle:focus {
203
+ outline: 0;
204
+ color: #fff;
205
+ background: rgba(255,255,255,.1);
206
+ }
207
+
208
+ .btn-circle i.animated {
209
+ -webkit-transition-property: -webkit-transform;
210
+ -webkit-transition-duration: 1s;
211
+ -moz-transition-property: -moz-transform;
212
+ -moz-transition-duration: 1s;
213
+ }
214
+
215
+ .btn-circle:hover i.animated {
216
+ -webkit-animation-name: pulse;
217
+ -moz-animation-name: pulse;
218
+ -webkit-animation-duration: 1.5s;
219
+ -moz-animation-duration: 1.5s;
220
+ -webkit-animation-iteration-count: infinite;
221
+ -moz-animation-iteration-count: infinite;
222
+ -webkit-animation-timing-function: linear;
223
+ -moz-animation-timing-function: linear;
224
+ }
225
+
226
+ @-webkit-keyframes pulse {
227
+ 0% {
228
+ -webkit-transform: scale(1);
229
+ transform: scale(1);
230
+ }
231
+
232
+ 50% {
233
+ -webkit-transform: scale(1.2);
234
+ transform: scale(1.2);
235
+ }
236
+
237
+ 100% {
238
+ -webkit-transform: scale(1);
239
+ transform: scale(1);
240
+ }
241
+ }
242
+
243
+ @-moz-keyframes pulse {
244
+ 0% {
245
+ -moz-transform: scale(1);
246
+ transform: scale(1);
247
+ }
248
+
249
+ 50% {
250
+ -moz-transform: scale(1.2);
251
+ transform: scale(1.2);
252
+ }
253
+
254
+ 100% {
255
+ -moz-transform: scale(1);
256
+ transform: scale(1);
257
+ }
258
+ }
259
+
260
+ .content-section {
261
+ padding-top: 100px;
262
+ }
263
+
264
+ .download-section {
265
+ width: 100%;
266
+ padding: 50px 0;
267
+ color: #fff;
268
+ background: url('/assets/grayscale/downloads-bg.jpg') no-repeat center center scroll;
269
+ background-color: #000;
270
+ -webkit-background-size: cover;
271
+ -moz-background-size: cover;
272
+ background-size: cover;
273
+ -o-background-size: cover;
274
+ }
275
+
276
+ #map {
277
+ width: 100%;
278
+ height: 200px;
279
+ margin-top: 100px;
280
+ }
281
+
282
+ @media(min-width:767px) {
283
+ .content-section {
284
+ padding-top: 250px;
285
+ }
286
+
287
+ .download-section {
288
+ padding: 100px 0;
289
+ }
290
+
291
+ #map {
292
+ height: 400px;
293
+ margin-top: 250px;
294
+ }
295
+ }
296
+
297
+ .btn {
298
+ border-radius: 0;
299
+ text-transform: uppercase;
300
+ font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
301
+ font-weight: 400;
302
+ -webkit-transition: all .3s ease-in-out;
303
+ -moz-transition: all .3s ease-in-out;
304
+ transition: all .3s ease-in-out;
305
+ }
306
+
307
+ .btn-default {
308
+ border: 1px solid #42dca3;
309
+ color: #42dca3;
310
+ background-color: transparent;
311
+ }
312
+
313
+ .btn-default:hover,
314
+ .btn-default:focus {
315
+ border: 1px solid #42dca3;
316
+ outline: 0;
317
+ color: #000;
318
+ background-color: #42dca3;
319
+ }
320
+
321
+ ul.banner-social-buttons {
322
+ margin-top: 0;
323
+ }
324
+
325
+ @media(max-width:1199px) {
326
+ ul.banner-social-buttons {
327
+ margin-top: 15px;
328
+ }
329
+ }
330
+
331
+ @media(max-width:767px) {
332
+ ul.banner-social-buttons li {
333
+ display: block;
334
+ margin-bottom: 20px;
335
+ padding: 0;
336
+ }
337
+
338
+ ul.banner-social-buttons li:last-child {
339
+ margin-bottom: 0;
340
+ }
341
+ }
342
+
343
+ footer {
344
+ padding: 50px 0;
345
+ }
346
+
347
+ footer p {
348
+ margin: 0;
349
+ }
350
+
351
+ ::-moz-selection {
352
+ text-shadow: none;
353
+ background: #fcfcfc;
354
+ background: rgba(255,255,255,.2);
355
+ }
356
+
357
+ ::selection {
358
+ text-shadow: none;
359
+ background: #fcfcfc;
360
+ background: rgba(255,255,255,.2);
361
+ }
362
+
363
+ img::selection {
364
+ background: 0 0;
365
+ }
366
+
367
+ img::-moz-selection {
368
+ background: 0 0;
369
+ }
370
+
371
+ body {
372
+ webkit-tap-highlight-color: rgba(255,255,255,.2);
373
+ }
@@ -0,0 +1,7 @@
1
+ /*
2
+ *= require font_awesome
3
+ *= require bootstrap
4
+ *= require grayscale/grayscale.css
5
+ *= require_self
6
+ */
7
+
@@ -0,0 +1,5 @@
1
+ class GrayscalesController < ApplicationController
2
+ layout "grayscale"
3
+ def index
4
+ end
5
+ end
@@ -0,0 +1,10 @@
1
+ <section id="about" class="container content-section text-center">
2
+ <div class="row">
3
+ <div class="col-lg-8 col-lg-offset-2">
4
+ <h2>About Grayscale</h2>
5
+ <p>Grayscale is a free Bootstrap 3 theme created by Start Bootstrap. It can be yours right now, simply download the template on <a href="http://startbootstrap.com/template-overviews/grayscale/">the preview page</a>. The theme is open source, and you can use it for any purpose, personal or commercial.</p>
6
+ <p>This theme features stock photos by <a href="http://gratisography.com/">Gratisography</a> along with a custom Google Maps skin courtesy of <a href="http://snazzymaps.com/">Snazzy Maps</a>.</p>
7
+ <p>Grayscale includes full HTML, CSS, and custom JavaScript files along with LESS files for easy customization.</p>
8
+ </div>
9
+ </div>
10
+ </section>