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,6 @@
1
+ //= require jquery
2
+ //= require jquery_ujs
3
+ //= require bootstrap
4
+ //= require clean_blog/clean-blog.js
5
+ //= require_self
6
+
@@ -0,0 +1,396 @@
1
+ /*!
2
+ * Clean Blog v1.0.0 (http://startbootstrap.com)
3
+ * Copyright 2014 Start Bootstrap
4
+ * Licensed under Apache 2.0 (https://github.com/IronSummitMedia/startbootstrap/blob/gh-pages/LICENSE)
5
+ */
6
+
7
+ body {
8
+ font-family: 'Lora', 'Times New Roman', serif;
9
+ font-size: 20px;
10
+ color: #404040;
11
+ }
12
+ p {
13
+ line-height: 1.5;
14
+ margin: 30px 0;
15
+ }
16
+ p a {
17
+ text-decoration: underline;
18
+ }
19
+ h1,
20
+ h2,
21
+ h3,
22
+ h4,
23
+ h5,
24
+ h6 {
25
+ font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
26
+ font-weight: 800;
27
+ }
28
+ a {
29
+ color: #404040;
30
+ }
31
+ a:hover,
32
+ a:focus {
33
+ color: #0085a1;
34
+ }
35
+ a img:hover,
36
+ a img:focus {
37
+ cursor: zoom-in;
38
+ }
39
+ blockquote {
40
+ color: #808080;
41
+ font-style: italic;
42
+ }
43
+ hr.small {
44
+ max-width: 100px;
45
+ margin: 15px auto;
46
+ border-width: 4px;
47
+ border-color: white;
48
+ }
49
+ .navbar-custom {
50
+ position: absolute;
51
+ top: 0;
52
+ left: 0;
53
+ width: 100%;
54
+ z-index: 3;
55
+ font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
56
+ }
57
+ .navbar-custom .navbar-brand {
58
+ font-weight: 800;
59
+ }
60
+ .navbar-custom .nav li a {
61
+ text-transform: uppercase;
62
+ font-size: 12px;
63
+ font-weight: 800;
64
+ letter-spacing: 1px;
65
+ }
66
+ @media only screen and (min-width: 768px) {
67
+ .navbar-custom {
68
+ background: transparent;
69
+ border-bottom: 1px solid transparent;
70
+ }
71
+ .navbar-custom .navbar-brand {
72
+ color: white;
73
+ padding: 20px;
74
+ }
75
+ .navbar-custom .navbar-brand:hover,
76
+ .navbar-custom .navbar-brand:focus {
77
+ color: rgba(255, 255, 255, 0.8);
78
+ }
79
+ .navbar-custom .nav li a {
80
+ color: white;
81
+ padding: 20px;
82
+ }
83
+ .navbar-custom .nav li a:hover,
84
+ .navbar-custom .nav li a:focus {
85
+ color: rgba(255, 255, 255, 0.8);
86
+ }
87
+ }
88
+ @media only screen and (min-width: 1170px) {
89
+ .navbar-custom {
90
+ -webkit-transition: background-color 0.3s;
91
+ -moz-transition: background-color 0.3s;
92
+ transition: background-color 0.3s;
93
+ /* Force Hardware Acceleration in WebKit */
94
+ -webkit-transform: translate3d(0, 0, 0);
95
+ -moz-transform: translate3d(0, 0, 0);
96
+ -ms-transform: translate3d(0, 0, 0);
97
+ -o-transform: translate3d(0, 0, 0);
98
+ transform: translate3d(0, 0, 0);
99
+ -webkit-backface-visibility: hidden;
100
+ backface-visibility: hidden;
101
+ }
102
+ .navbar-custom.is-fixed {
103
+ /* when the user scrolls down, we hide the header right above the viewport */
104
+ position: fixed;
105
+ top: -61px;
106
+ background-color: rgba(255, 255, 255, 0.9);
107
+ border-bottom: 1px solid #f2f2f2;
108
+ -webkit-transition: -webkit-transform 0.3s;
109
+ -moz-transition: -moz-transform 0.3s;
110
+ transition: transform 0.3s;
111
+ }
112
+ .navbar-custom.is-fixed .navbar-brand {
113
+ color: #404040;
114
+ }
115
+ .navbar-custom.is-fixed .navbar-brand:hover,
116
+ .navbar-custom.is-fixed .navbar-brand:focus {
117
+ color: #0085a1;
118
+ }
119
+ .navbar-custom.is-fixed .nav li a {
120
+ color: #404040;
121
+ }
122
+ .navbar-custom.is-fixed .nav li a:hover,
123
+ .navbar-custom.is-fixed .nav li a:focus {
124
+ color: #0085a1;
125
+ }
126
+ .navbar-custom.is-visible {
127
+ /* if the user changes the scrolling direction, we show the header */
128
+ -webkit-transform: translate3d(0, 100%, 0);
129
+ -moz-transform: translate3d(0, 100%, 0);
130
+ -ms-transform: translate3d(0, 100%, 0);
131
+ -o-transform: translate3d(0, 100%, 0);
132
+ transform: translate3d(0, 100%, 0);
133
+ }
134
+ }
135
+
136
+ .intro-header {
137
+ background-color: #808080;
138
+ background: no-repeat center center;
139
+ background-attachment: scroll;
140
+ -webkit-background-size: cover;
141
+ -moz-background-size: cover;
142
+ background-size: cover;
143
+ -o-background-size: cover;
144
+ margin-bottom: 50px;
145
+ }
146
+ .intro-header .site-heading,
147
+ .intro-header .post-heading,
148
+ .intro-header .page-heading {
149
+ padding: 100px 0 50px;
150
+ color: white;
151
+ }
152
+ @media only screen and (min-width: 768px) {
153
+ .intro-header .site-heading,
154
+ .intro-header .post-heading,
155
+ .intro-header .page-heading {
156
+ padding: 150px 0;
157
+ }
158
+ }
159
+ .intro-header .site-heading,
160
+ .intro-header .page-heading {
161
+ text-align: center;
162
+ }
163
+ .intro-header .site-heading h1,
164
+ .intro-header .page-heading h1 {
165
+ margin-top: 0;
166
+ font-size: 50px;
167
+ }
168
+ .intro-header .site-heading .subheading,
169
+ .intro-header .page-heading .subheading {
170
+ font-size: 24px;
171
+ line-height: 1.1;
172
+ display: block;
173
+ font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
174
+ font-weight: 300;
175
+ margin: 10px 0 0;
176
+ }
177
+ @media only screen and (min-width: 768px) {
178
+ .intro-header .site-heading h1,
179
+ .intro-header .page-heading h1 {
180
+ font-size: 80px;
181
+ }
182
+ }
183
+ .intro-header .post-heading h1 {
184
+ font-size: 35px;
185
+ }
186
+ .intro-header .post-heading .subheading,
187
+ .intro-header .post-heading .meta {
188
+ line-height: 1.1;
189
+ display: block;
190
+ }
191
+ .intro-header .post-heading .subheading {
192
+ font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
193
+ font-size: 24px;
194
+ margin: 10px 0 30px;
195
+ font-weight: 600;
196
+ }
197
+ .intro-header .post-heading .meta {
198
+ font-family: 'Lora', 'Times New Roman', serif;
199
+ font-style: italic;
200
+ font-weight: 300;
201
+ font-size: 20px;
202
+ }
203
+ .intro-header .post-heading .meta a {
204
+ color: white;
205
+ }
206
+ @media only screen and (min-width: 768px) {
207
+ .intro-header .post-heading h1 {
208
+ font-size: 55px;
209
+ }
210
+ .intro-header .post-heading .subheading {
211
+ font-size: 30px;
212
+ }
213
+ }
214
+ .post-preview > a {
215
+ color: #404040;
216
+ }
217
+ .post-preview > a:hover,
218
+ .post-preview > a:focus {
219
+ text-decoration: none;
220
+ color: #0085a1;
221
+ }
222
+ .post-preview > a > .post-title {
223
+ font-size: 30px;
224
+ margin-top: 30px;
225
+ margin-bottom: 10px;
226
+ }
227
+ .post-preview > a > .post-subtitle {
228
+ margin: 0;
229
+ font-weight: 300;
230
+ margin-bottom: 10px;
231
+ }
232
+ .post-preview > .post-meta {
233
+ color: #808080;
234
+ font-size: 18px;
235
+ font-style: italic;
236
+ margin-top: 0;
237
+ }
238
+ .post-preview > .post-meta > a {
239
+ text-decoration: none;
240
+ color: #404040;
241
+ }
242
+ .post-preview > .post-meta > a:hover,
243
+ .post-preview > .post-meta > a:focus {
244
+ color: #0085a1;
245
+ text-decoration: underline;
246
+ }
247
+ @media only screen and (min-width: 768px) {
248
+ .post-preview > a > .post-title {
249
+ font-size: 36px;
250
+ }
251
+ }
252
+ .section-heading {
253
+ font-size: 36px;
254
+ margin-top: 60px;
255
+ font-weight: 700;
256
+ }
257
+ .caption {
258
+ text-align: center;
259
+ font-size: 14px;
260
+ padding: 10px;
261
+ font-style: italic;
262
+ margin: 0;
263
+ display: block;
264
+ border-bottom-right-radius: 5px;
265
+ border-bottom-left-radius: 5px;
266
+ }
267
+ footer {
268
+ padding: 50px 0 65px;
269
+ }
270
+ footer .list-inline {
271
+ margin: 0;
272
+ padding: 0;
273
+ }
274
+ footer .copyright {
275
+ font-size: 14px;
276
+ text-align: center;
277
+ margin-bottom: 0;
278
+ }
279
+ .floating-label-form-group {
280
+ font-size: 14px;
281
+ position: relative;
282
+ margin-bottom: 0;
283
+ padding-bottom: 0.5em;
284
+ border-bottom: 1px solid #eeeeee;
285
+ }
286
+ .floating-label-form-group input,
287
+ .floating-label-form-group textarea {
288
+ z-index: 1;
289
+ position: relative;
290
+ padding-right: 0;
291
+ padding-left: 0;
292
+ border: none;
293
+ border-radius: 0;
294
+ font-size: 1.5em;
295
+ background: none;
296
+ box-shadow: none !important;
297
+ resize: none;
298
+ }
299
+ .floating-label-form-group label {
300
+ display: block;
301
+ z-index: 0;
302
+ position: relative;
303
+ top: 2em;
304
+ margin: 0;
305
+ font-size: 0.85em;
306
+ line-height: 1.764705882em;
307
+ vertical-align: middle;
308
+ vertical-align: baseline;
309
+ opacity: 0;
310
+ -webkit-transition: top 0.3s ease,opacity 0.3s ease;
311
+ -moz-transition: top 0.3s ease,opacity 0.3s ease;
312
+ -ms-transition: top 0.3s ease,opacity 0.3s ease;
313
+ transition: top 0.3s ease,opacity 0.3s ease;
314
+ }
315
+ .floating-label-form-group:not(:first-child) {
316
+ padding-left: 14px;
317
+ border-left: 1px solid #eeeeee;
318
+ }
319
+ .floating-label-form-group-with-value label {
320
+ top: 0;
321
+ opacity: 1;
322
+ }
323
+ .floating-label-form-group-with-focus label {
324
+ color: #0085a1;
325
+ }
326
+ form .row:first-child .floating-label-form-group {
327
+ border-top: 1px solid #eeeeee;
328
+ }
329
+ .btn {
330
+ font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
331
+ text-transform: uppercase;
332
+ font-size: 14px;
333
+ font-weight: 800;
334
+ letter-spacing: 1px;
335
+ border-radius: 0;
336
+ padding: 15px 25px;
337
+ }
338
+ .btn-lg {
339
+ font-size: 16px;
340
+ padding: 25px 35px;
341
+ }
342
+ .btn-default:hover,
343
+ .btn-default:focus {
344
+ background-color: #0085a1;
345
+ border: 1px solid #0085a1;
346
+ color: white;
347
+ }
348
+ .pager {
349
+ margin: 20px 0 0;
350
+ }
351
+ .pager li > a,
352
+ .pager li > span {
353
+ font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
354
+ text-transform: uppercase;
355
+ font-size: 14px;
356
+ font-weight: 800;
357
+ letter-spacing: 1px;
358
+ padding: 15px 25px;
359
+ background-color: white;
360
+ border-radius: 0;
361
+ }
362
+ .pager li > a:hover,
363
+ .pager li > a:focus {
364
+ color: white;
365
+ background-color: #0085a1;
366
+ border: 1px solid #0085a1;
367
+ }
368
+ .pager .disabled > a,
369
+ .pager .disabled > a:hover,
370
+ .pager .disabled > a:focus,
371
+ .pager .disabled > span {
372
+ color: #808080;
373
+ background-color: #404040;
374
+ cursor: not-allowed;
375
+ }
376
+ ::-moz-selection {
377
+ color: white;
378
+ text-shadow: none;
379
+ background: #0085a1;
380
+ }
381
+ ::selection {
382
+ color: white;
383
+ text-shadow: none;
384
+ background: #0085a1;
385
+ }
386
+ img::selection {
387
+ color: white;
388
+ background: transparent;
389
+ }
390
+ img::-moz-selection {
391
+ color: white;
392
+ background: transparent;
393
+ }
394
+ body {
395
+ webkit-tap-highlight-color: #0085a1;
396
+ }
@@ -0,0 +1,5 @@
1
+ /*
2
+ *= require clean_blog/clean-blog.css
3
+ *= require_self
4
+ */
5
+
@@ -0,0 +1,15 @@
1
+ class CleanBlogsController < ApplicationController
2
+ layout "clean_blog"
3
+
4
+ def index
5
+ end
6
+
7
+ def about
8
+ end
9
+
10
+ def post
11
+ end
12
+
13
+ def contact
14
+ end
15
+ end
@@ -0,0 +1,11 @@
1
+ module CleanBlogsHelper
2
+ # Returns the full title on a per-page basis.
3
+ def full_title(page_title = '')
4
+ base_title = "Clean Blog"
5
+ if page_title.empty?
6
+ base_title
7
+ else
8
+ "#{base_title} - #{page_title}"
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,35 @@
1
+ <footer>
2
+ <div class="container">
3
+ <div class="row">
4
+ <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
5
+ <ul class="list-inline text-center">
6
+ <li>
7
+ <a href="#">
8
+ <span class="fa-stack fa-lg">
9
+ <i class="fa fa-circle fa-stack-2x"></i>
10
+ <i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
11
+ </span>
12
+ </a>
13
+ </li>
14
+ <li>
15
+ <a href="#">
16
+ <span class="fa-stack fa-lg">
17
+ <i class="fa fa-circle fa-stack-2x"></i>
18
+ <i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
19
+ </span>
20
+ </a>
21
+ </li>
22
+ <li>
23
+ <a href="#">
24
+ <span class="fa-stack fa-lg">
25
+ <i class="fa fa-circle fa-stack-2x"></i>
26
+ <i class="fa fa-github fa-stack-1x fa-inverse"></i>
27
+ </span>
28
+ </a>
29
+ </li>
30
+ </ul>
31
+ <p class="copyright text-muted">Copyright &copy; Your Website 2014</p>
32
+ </div>
33
+ </div>
34
+ </div>
35
+ </footer>