devlopr 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/blog_newsletters.html +17 -18
- data/_includes/blog_sidebar.html +0 -3
- data/_includes/footer.html +10 -2
- data/_sass/devlog.scss +311 -4
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd050d04823c12175408e68397906f1de99519beea2c063e95d7be9869774f62
|
4
|
+
data.tar.gz: d50eacd79d633820f0f3fd6d736bd1a9f4039a61e81cbd0609e03ad07f82bf96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 905c09ea138aa2dcf26f5c4af4822baf35080bedc75abf85a4f080df042e4317e3be4c9533f13e36ec1258822e80c68ed892431f989e79e49d5f06d31b16c951
|
7
|
+
data.tar.gz: bb242a077c1fab16439e02a0f0bd7204b521af668ed534cfa200ac40a7852cef72f2bff51fbca3ab97b74e80c805522c0b66b8a981b6a81bc38aca204070dd40
|
@@ -1,18 +1,17 @@
|
|
1
|
-
|
2
|
-
<!--
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
</div>
|
1
|
+
|
2
|
+
<!-- MailChimp Subscription Form -->
|
3
|
+
<!-- Replace the url with your mailchimp form url-->
|
4
|
+
<form action="https://programmingebooks.us10.list-manage.com/subscribe/post?u=50bab1c85eae24ecfb0f68361&id=3a2dd721d0"
|
5
|
+
method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
|
6
|
+
<div id="mc_embed_signup_scroll_footer">
|
7
|
+
<label for="mce-EMAIL_footer"> Signup for Weekly Email Newsletters :D</label>
|
8
|
+
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL_footer" placeholder="email address" required>
|
9
|
+
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
|
10
|
+
<div style="position: absolute; left: -5000px;" aria-hidden="true">
|
11
|
+
<input type="text" name="b_50bab1c85eae24ecfb0f68361_3a2dd721d0" tabindex="-1" value="">
|
12
|
+
</div><br />
|
13
|
+
<div class="clear">
|
14
|
+
|
15
|
+
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe_footer" class="btn btn-lg btn-success">
|
16
|
+
</div>
|
17
|
+
</div>
|
data/_includes/blog_sidebar.html
CHANGED
data/_includes/footer.html
CHANGED
@@ -1,7 +1,15 @@
|
|
1
|
+
<div class="col-lg-12" id="newsletter_footer">
|
2
|
+
{%- include blog_newsletters.html -%}
|
3
|
+
</form>
|
4
|
+
</div>
|
5
|
+
|
1
6
|
<footer>
|
2
7
|
|
3
|
-
<p>
|
8
|
+
<p> Powered by<a href="https://devlopr.netlify.com/readme"> devlopr jekyll</a>. Hosted at <a href="https://pages.github.com">Github</a>. Subscribe via
|
4
9
|
<a href="{{ " /feed.xml " | prepend: site.baseurl }}">RSS</a>
|
5
10
|
</p>
|
6
11
|
|
7
|
-
</footer>
|
12
|
+
</footer>
|
13
|
+
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
14
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
15
|
+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
data/_sass/devlog.scss
CHANGED
@@ -2,11 +2,14 @@ body {
|
|
2
2
|
background-color: #D6DDE1 !important;
|
3
3
|
font-family: 'Quicksand', sans-serif !important;
|
4
4
|
}
|
5
|
+
html {
|
6
|
+
scroll-behavior: smooth;
|
7
|
+
}
|
5
8
|
|
6
9
|
header {
|
7
10
|
background-color: #F5F5F5;
|
8
11
|
box-shadow: 10px 0px 8px;
|
9
|
-
height:
|
12
|
+
height: auto;
|
10
13
|
width: 100%;
|
11
14
|
padding: 11px;
|
12
15
|
}
|
@@ -44,11 +47,21 @@ header {
|
|
44
47
|
padding: 20px !important;
|
45
48
|
}
|
46
49
|
|
50
|
+
.blog-post{
|
51
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
52
|
+
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
|
53
|
+
}
|
54
|
+
|
55
|
+
.blog-post:hover {
|
56
|
+
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
|
57
|
+
}
|
58
|
+
|
47
59
|
.social-link {
|
48
60
|
color: #262222;
|
49
61
|
font-size: 15px;
|
50
62
|
padding: 5px;
|
51
63
|
margin: 2px;
|
64
|
+
text-decoration: none !important;
|
52
65
|
}
|
53
66
|
|
54
67
|
#navigation {
|
@@ -59,13 +72,13 @@ header {
|
|
59
72
|
font-size: 24px !important;
|
60
73
|
color: #000;
|
61
74
|
}
|
62
|
-
|
63
75
|
footer {
|
64
76
|
width: 100%;
|
65
77
|
height: 70px;
|
66
78
|
text-align: center;
|
67
79
|
padding: 20px;
|
68
|
-
background-color: #
|
80
|
+
background-color: #000000;
|
81
|
+
color:#fff;
|
69
82
|
}
|
70
83
|
|
71
84
|
.company-logo {
|
@@ -121,7 +134,12 @@ code {
|
|
121
134
|
display: block;
|
122
135
|
}
|
123
136
|
|
124
|
-
|
137
|
+
#newsletter_footer{
|
138
|
+
background-color: #1e90ff;
|
139
|
+
color:#fff;
|
140
|
+
|
141
|
+
|
142
|
+
@media (min-width: 320px) and (max-width: 480px) {
|
125
143
|
header {
|
126
144
|
height: auto;
|
127
145
|
text-align: center;
|
@@ -131,4 +149,293 @@ code {
|
|
131
149
|
height: auto;
|
132
150
|
margin-left: -20px !important;
|
133
151
|
}
|
152
|
+
#mc-embedded-subscribe-form{
|
153
|
+
width: 100%;
|
154
|
+
padding: 50px;
|
155
|
+
}
|
156
|
+
|
157
|
+
#mc_embed_signup_scroll_footer{
|
158
|
+
margin-left:5%;
|
159
|
+
margin-right: 5%;
|
160
|
+
text-align:center;
|
161
|
+
font-size: 12px;
|
162
|
+
}
|
163
|
+
#mce-EMAIL_footer {
|
164
|
+
width: 200px;
|
165
|
+
padding: 14px;
|
166
|
+
color: #111;
|
167
|
+
border-color:#fff;
|
168
|
+
text-align: center;
|
169
|
+
text-transform: capitalize;
|
170
|
+
border: 1px solid #fff;
|
171
|
+
}
|
172
|
+
#mc-embedded-subscribe_footer{
|
173
|
+
margin-top: 30px;
|
174
|
+
}
|
175
|
+
}
|
176
|
+
|
177
|
+
|
178
|
+
/*
|
179
|
+
##Device = Low Resolution Tablets, Mobiles (Landscape)
|
180
|
+
##Screen = B/w 481px to 767px
|
181
|
+
*/
|
182
|
+
|
183
|
+
@media (min-width: 481px) and (max-width: 767px) {
|
184
|
+
|
185
|
+
#mc-embedded-subscribe-form{
|
186
|
+
width: 100%;
|
187
|
+
padding: 50px;
|
188
|
+
}
|
189
|
+
|
190
|
+
|
191
|
+
#mc_embed_signup_scroll_footer{
|
192
|
+
margin-left:5%;
|
193
|
+
margin-right: 5%;
|
194
|
+
text-align:center;
|
195
|
+
font-size: 20px;
|
196
|
+
}
|
197
|
+
#mce-EMAIL_footer {
|
198
|
+
width: 300px;
|
199
|
+
padding: 14px;
|
200
|
+
color: #111;
|
201
|
+
border-color:#fff;
|
202
|
+
text-align: center;
|
203
|
+
text-transform: capitalize;
|
204
|
+
border: 1px solid #fff;
|
205
|
+
}
|
206
|
+
#mc-embedded-subscribe_footer{
|
207
|
+
margin-top: 30px;
|
208
|
+
}
|
209
|
+
|
210
|
+
}
|
211
|
+
/*
|
212
|
+
##Device = Tablets, Ipads (portrait)
|
213
|
+
##Screen = B/w 768px to 1024px
|
214
|
+
*/
|
215
|
+
|
216
|
+
@media (min-width: 768px) and (max-width: 1024px) {
|
217
|
+
|
218
|
+
#mc-embedded-subscribe-form{
|
219
|
+
width: 100%;
|
220
|
+
padding: 50px;
|
221
|
+
}
|
222
|
+
|
223
|
+
#mc_embed_signup_scroll_footer{
|
224
|
+
margin-left:35%;
|
225
|
+
margin-right: 35%;
|
226
|
+
text-align:center;
|
227
|
+
font-size: 22px;
|
228
|
+
}
|
229
|
+
#mce-EMAIL_footer {
|
230
|
+
width: 400px;
|
231
|
+
padding: 14px;
|
232
|
+
color: #111;
|
233
|
+
border-color:#fff;
|
234
|
+
text-align: center;
|
235
|
+
text-transform: capitalize;
|
236
|
+
border: 1px solid #fff;
|
237
|
+
}
|
238
|
+
#mc-embedded-subscribe_footer{
|
239
|
+
margin-top: 30px;
|
240
|
+
}
|
241
|
+
|
242
|
+
}
|
243
|
+
/*
|
244
|
+
##Device = Tablets, Ipads (landscape)
|
245
|
+
##Screen = B/w 768px to 1024px
|
246
|
+
*/
|
247
|
+
|
248
|
+
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
|
249
|
+
|
250
|
+
#mc-embedded-subscribe-form{
|
251
|
+
width: 100%;
|
252
|
+
padding: 50px;
|
253
|
+
}
|
254
|
+
|
255
|
+
#mc_embed_signup_scroll_footer{
|
256
|
+
margin-left:25%;
|
257
|
+
margin-right: 25%;
|
258
|
+
text-align:center;
|
259
|
+
font-size: 22px;
|
260
|
+
}
|
261
|
+
#mce-EMAIL_footer {
|
262
|
+
width: 400px;
|
263
|
+
padding: 14px;
|
264
|
+
color: #111;
|
265
|
+
border-color:#fff;
|
266
|
+
text-align: center;
|
267
|
+
text-transform: capitalize;
|
268
|
+
border: 1px solid #fff;
|
269
|
+
}
|
270
|
+
#mc-embedded-subscribe_footer{
|
271
|
+
margin-top: 30px;
|
272
|
+
}
|
273
|
+
|
274
|
+
}
|
275
|
+
|
276
|
+
/*
|
277
|
+
##Device = Laptops, Desktops
|
278
|
+
##Screen = B/w 1025px to 1280px
|
279
|
+
*/
|
280
|
+
|
281
|
+
@media (min-width: 1025px) and (max-width: 1280px) {
|
282
|
+
|
283
|
+
#mc-embedded-subscribe-form{
|
284
|
+
width: 100%;
|
285
|
+
padding: 50px;
|
286
|
+
}
|
287
|
+
|
288
|
+
#mc_embed_signup_scroll_footer{
|
289
|
+
margin-left:25%;
|
290
|
+
margin-right: 25%;
|
291
|
+
text-align:center;
|
292
|
+
font-size: 22px;
|
293
|
+
}
|
294
|
+
#mce-EMAIL_footer {
|
295
|
+
width: 400px;
|
296
|
+
padding: 14px;
|
297
|
+
color: #111;
|
298
|
+
border-color:#fff;
|
299
|
+
text-align: center;
|
300
|
+
text-transform: capitalize;
|
301
|
+
border: 1px solid #fff;
|
302
|
+
}
|
303
|
+
#mc-embedded-subscribe_footer{
|
304
|
+
margin-top: 30px;
|
305
|
+
}
|
306
|
+
|
307
|
+
}
|
308
|
+
/*
|
309
|
+
##Device = Desktops
|
310
|
+
##Screen = 1281px to higher resolution desktops
|
311
|
+
*/
|
312
|
+
|
313
|
+
@media (min-width: 1281px) {
|
314
|
+
|
315
|
+
|
316
|
+
#mc-embedded-subscribe-form{
|
317
|
+
width: 100%;
|
318
|
+
padding: 50px;
|
319
|
+
}
|
320
|
+
|
321
|
+
#mc_embed_signup_scroll_footer{
|
322
|
+
margin-left:25%;
|
323
|
+
margin-right: 25%;
|
324
|
+
text-align:center;
|
325
|
+
font-size: 22px;
|
326
|
+
}
|
327
|
+
#mce-EMAIL_footer {
|
328
|
+
width: 400px;
|
329
|
+
padding: 14px;
|
330
|
+
color: #111;
|
331
|
+
border-color:#fff;
|
332
|
+
text-align: center;
|
333
|
+
text-transform: capitalize;
|
334
|
+
border: 1px solid #fff;
|
335
|
+
}
|
336
|
+
#mc-embedded-subscribe_footer{
|
337
|
+
margin-top: 30px;
|
338
|
+
}
|
339
|
+
|
340
|
+
|
341
|
+
}
|
342
|
+
/* (1920x1080) Full HD Display */
|
343
|
+
@media (min-width: 1281px) and (max-width: 1920px) {
|
344
|
+
|
345
|
+
#mc-embedded-subscribe-form{
|
346
|
+
width: 100%;
|
347
|
+
padding: 50px;
|
348
|
+
}
|
349
|
+
|
350
|
+
#mc_embed_signup_scroll_footer{
|
351
|
+
margin-left:25%;
|
352
|
+
margin-right: 25%;
|
353
|
+
text-align:center;
|
354
|
+
font-size: 22px;
|
355
|
+
}
|
356
|
+
#mce-EMAIL_footer {
|
357
|
+
width: 400px;
|
358
|
+
padding: 14px;
|
359
|
+
color: #111;
|
360
|
+
border-color:#fff;
|
361
|
+
text-align: center;
|
362
|
+
text-transform: capitalize;
|
363
|
+
border: 1px solid #fff;
|
364
|
+
}
|
365
|
+
#mc-embedded-subscribe_footer{
|
366
|
+
margin-top: 30px;
|
367
|
+
}
|
368
|
+
}
|
369
|
+
|
370
|
+
/* Syntax Hightlighter */
|
371
|
+
/* Theme - Autumn */
|
372
|
+
/* For More Themes : https://github.com/richleland/pygments-css */
|
373
|
+
|
374
|
+
.highlight .hll { background-color: #ffffcc }
|
375
|
+
.highlight { background: #ffffff; }
|
376
|
+
.highlight .c { color: #aaaaaa; font-style: italic } /* Comment */
|
377
|
+
.highlight .err { color: #FF0000; background-color: #FFAAAA } /* Error */
|
378
|
+
.highlight .k { color: #0000aa } /* Keyword */
|
379
|
+
.highlight .ch { color: #aaaaaa; font-style: italic } /* Comment.Hashbang */
|
380
|
+
.highlight .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
|
381
|
+
.highlight .cp { color: #4c8317 } /* Comment.Preproc */
|
382
|
+
.highlight .cpf { color: #aaaaaa; font-style: italic } /* Comment.PreprocFile */
|
383
|
+
.highlight .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
|
384
|
+
.highlight .cs { color: #0000aa; font-style: italic } /* Comment.Special */
|
385
|
+
.highlight .gd { color: #aa0000 } /* Generic.Deleted */
|
386
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
387
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
388
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
389
|
+
.highlight .gi { color: #00aa00 } /* Generic.Inserted */
|
390
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
391
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
392
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
393
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
394
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
395
|
+
.highlight .kc { color: #0000aa } /* Keyword.Constant */
|
396
|
+
.highlight .kd { color: #0000aa } /* Keyword.Declaration */
|
397
|
+
.highlight .kn { color: #0000aa } /* Keyword.Namespace */
|
398
|
+
.highlight .kp { color: #0000aa } /* Keyword.Pseudo */
|
399
|
+
.highlight .kr { color: #0000aa } /* Keyword.Reserved */
|
400
|
+
.highlight .kt { color: #00aaaa } /* Keyword.Type */
|
401
|
+
.highlight .m { color: #009999 } /* Literal.Number */
|
402
|
+
.highlight .s { color: #aa5500 } /* Literal.String */
|
403
|
+
.highlight .na { color: #1e90ff } /* Name.Attribute */
|
404
|
+
.highlight .nb { color: #00aaaa } /* Name.Builtin */
|
405
|
+
.highlight .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
|
406
|
+
.highlight .no { color: #aa0000 } /* Name.Constant */
|
407
|
+
.highlight .nd { color: #888888 } /* Name.Decorator */
|
408
|
+
.highlight .ni { color: #880000; font-weight: bold } /* Name.Entity */
|
409
|
+
.highlight .nf { color: #00aa00 } /* Name.Function */
|
410
|
+
.highlight .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
|
411
|
+
.highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
|
412
|
+
.highlight .nv { color: #aa0000 } /* Name.Variable */
|
413
|
+
.highlight .ow { color: #0000aa } /* Operator.Word */
|
414
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
415
|
+
.highlight .mb { color: #009999 } /* Literal.Number.Bin */
|
416
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
417
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
418
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
419
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
420
|
+
.highlight .sa { color: #aa5500 } /* Literal.String.Affix */
|
421
|
+
.highlight .sb { color: #aa5500 } /* Literal.String.Backtick */
|
422
|
+
.highlight .sc { color: #aa5500 } /* Literal.String.Char */
|
423
|
+
.highlight .dl { color: #aa5500 } /* Literal.String.Delimiter */
|
424
|
+
.highlight .sd { color: #aa5500 } /* Literal.String.Doc */
|
425
|
+
.highlight .s2 { color: #aa5500 } /* Literal.String.Double */
|
426
|
+
.highlight .se { color: #aa5500 } /* Literal.String.Escape */
|
427
|
+
.highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */
|
428
|
+
.highlight .si { color: #aa5500 } /* Literal.String.Interpol */
|
429
|
+
.highlight .sx { color: #aa5500 } /* Literal.String.Other */
|
430
|
+
.highlight .sr { color: #009999 } /* Literal.String.Regex */
|
431
|
+
.highlight .s1 { color: #aa5500 } /* Literal.String.Single */
|
432
|
+
.highlight .ss { color: #0000aa } /* Literal.String.Symbol */
|
433
|
+
.highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
|
434
|
+
.highlight .fm { color: #00aa00 } /* Name.Function.Magic */
|
435
|
+
.highlight .vc { color: #aa0000 } /* Name.Variable.Class */
|
436
|
+
.highlight .vg { color: #aa0000 } /* Name.Variable.Global */
|
437
|
+
.highlight .vi { color: #aa0000 } /* Name.Variable.Instance */
|
438
|
+
.highlight .vm { color: #aa0000 } /* Name.Variable.Magic */
|
439
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
440
|
+
|
134
441
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devlopr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sujay Kundu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-07-
|
11
|
+
date: 2019-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll-sitemap
|
@@ -36,20 +36,20 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '0.
|
39
|
+
version: '0.11'
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 0.
|
42
|
+
version: 0.11.0
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: '0.
|
49
|
+
version: '0.11'
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version: 0.
|
52
|
+
version: 0.11.0
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: jekyll-seo-tag
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|