devlopr 0.1.2 → 0.1.4
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.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +16 -1
- data/_includes/footer.html +6 -6
- data/_includes/head.html +24 -14
- data/_includes/header.html +55 -35
- data/_includes/share.html +13 -0
- data/_includes/sidebar.html +1 -0
- data/_layouts/blog.html +77 -37
- data/_layouts/default.html +18 -12
- data/_layouts/homepage.html +107 -0
- data/_layouts/page.html +90 -11
- data/_layouts/post.html +132 -46
- data/_sass/devlog.scss +86 -0
- data/assets/css/main.scss +5 -0
- data/assets/images/profile.png +0 -0
- metadata +29 -16
- data/_layouts/home.html +0 -44
- data/assets/css/main.css +0 -14
- data/assets/js/html5shiv.js +0 -322
- data/assets/js/respond.js +0 -353
- data/blog.md +0 -3
- data/index.md +0 -7
- data/projects.md +0 -11
data/_layouts/page.html
CHANGED
@@ -1,11 +1,90 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
|
4
|
+
{%- include head.html -%}
|
5
|
+
|
6
|
+
<body>
|
7
|
+
<div class="container-fluid">
|
8
|
+
|
9
|
+
{%- include header.html -%}
|
10
|
+
|
11
|
+
<div class="col-lg-12">
|
12
|
+
|
13
|
+
<nav aria-label="breadcrumb" role="navigation">
|
14
|
+
<ol class="breadcrumb">
|
15
|
+
<li class="breadcrumb-item">
|
16
|
+
<a href="/blog">Blog</a>
|
17
|
+
</li>
|
18
|
+
<li class="breadcrumb-item">
|
19
|
+
<a href="/blog/categories">Categories</a>
|
20
|
+
</li>
|
21
|
+
<li class="breadcrumb-item active" aria-current="page">{{ page.title }}</li>
|
22
|
+
</ol>
|
23
|
+
</nav>
|
24
|
+
|
25
|
+
<div class="row">
|
26
|
+
|
27
|
+
<div class="col-lg-8">
|
28
|
+
|
29
|
+
<article class="card" itemscope itemtype="http://schema.org/BlogPosting">
|
30
|
+
|
31
|
+
{{ content }}
|
32
|
+
|
33
|
+
|
34
|
+
</article>
|
35
|
+
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div class="col-lg-4">
|
39
|
+
|
40
|
+
<div class="card">
|
41
|
+
|
42
|
+
<div class="card-header">Categories </div>
|
43
|
+
<div class="card-body text-dark">
|
44
|
+
{% for tag in site.tags %} {% capture tag_name %}{{ tag | first }}{% endcapture %}
|
45
|
+
<div id="#{{ tag_name | slugize }}"></div>
|
46
|
+
<li class="tag-head">
|
47
|
+
<a href="{{ site.baseurl }}/blog/categories/{{ tag_name }}">{{ tag_name }}</a>
|
48
|
+
</li>
|
49
|
+
<a name="{{ tag_name | slugize }}"></a>
|
50
|
+
|
51
|
+
{% endfor %}
|
52
|
+
</div>
|
53
|
+
|
54
|
+
|
55
|
+
</div>
|
56
|
+
<div class="card">
|
57
|
+
<!-- Begin MailChimp Signup Form -->
|
58
|
+
<div id="mc_embed_signup">
|
59
|
+
<form action="https://programmingebooks.us10.list-manage.com/subscribe/post?u=50bab1c85eae24ecfb0f68361&id=3a2dd721d0"
|
60
|
+
method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate"
|
61
|
+
target="_blank" novalidate>
|
62
|
+
<div id="mc_embed_signup_scroll">
|
63
|
+
<label for="mce-EMAIL">Subscribe via Email :</label>
|
64
|
+
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
|
65
|
+
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
|
66
|
+
<div style="position: absolute; left: -5000px;" aria-hidden="true">
|
67
|
+
<input type="text" name="b_50bab1c85eae24ecfb0f68361_3a2dd721d0" tabindex="-1" value="">
|
68
|
+
</div>
|
69
|
+
<div class="clear">
|
70
|
+
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn btn-md btn-default">
|
71
|
+
</div>
|
72
|
+
</div>
|
73
|
+
</form>
|
74
|
+
</div>
|
75
|
+
</div>
|
76
|
+
</div>
|
77
|
+
<!-- End of Sidebar -->
|
78
|
+
|
79
|
+
|
80
|
+
</div>
|
81
|
+
|
82
|
+
</div>
|
83
|
+
{%- include footer.html -%}
|
84
|
+
</div>
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
</body>
|
89
|
+
|
90
|
+
</html>
|
data/_layouts/post.html
CHANGED
@@ -1,49 +1,135 @@
|
|
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
|
-
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
|
4
|
+
{%- include head.html -%}
|
5
|
+
|
6
|
+
<body>
|
7
|
+
<div class="container-fluid">
|
8
|
+
|
9
|
+
{%- include header.html -%}
|
10
|
+
|
11
|
+
<div class="col-lg-12">
|
12
|
+
|
13
|
+
<nav aria-label="breadcrumb" role="navigation">
|
14
|
+
<ol class="breadcrumb">
|
15
|
+
<li class="breadcrumb-item">
|
16
|
+
<a href="/blog">Blog</a>
|
17
|
+
</li>
|
18
|
+
<li class="breadcrumb-item">
|
19
|
+
<a href="/blog/categories">Categories</a>
|
20
|
+
</li>
|
21
|
+
<li class="breadcrumb-item active" aria-current="page">{{ page.title }}</li>
|
22
|
+
</ol>
|
23
|
+
</nav>
|
24
|
+
|
25
|
+
<div class="row">
|
26
|
+
|
27
|
+
<div class="col-lg-8">
|
28
|
+
|
29
|
+
<article class="card" itemscope itemtype="http://schema.org/BlogPosting">
|
30
|
+
|
31
|
+
|
32
|
+
<div class="card-header">
|
33
|
+
<!-- <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1> -->
|
34
|
+
<h4 class="post-meta">{{ page.summary }}</h4>
|
35
|
+
<p class="post-summary">Posted by : {% if page.author %}
|
36
|
+
<img src="https://www.sujaykundu.com/assets/images/brand/sujay.png" class="author-profile-img">
|
37
|
+
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
|
38
|
+
<span itemprop="name">{{ page.author }}</span>
|
39
|
+
</span>{% endif %} at
|
40
|
+
<time datetime="{{ page.date }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>
|
41
|
+
</p>
|
42
|
+
<span class="disqus-comment-count" data-disqus-identifier="{{ page.url }}"></span>
|
43
|
+
<p>
|
44
|
+
{%- include share.html -%}
|
45
|
+
</p>
|
46
|
+
<div class="post-categories">
|
47
|
+
{% if post %} {% assign categories = post.tags %} {% else %} {% assign categories = page.tags %} {% endif %} Category : {%
|
48
|
+
for category in categories %}
|
49
|
+
<a href="{{site.baseurl}}/blog/categories/{{category|slugize}}">{{category}}</a>
|
50
|
+
{% unless forloop.last %} {% endunless %} {% endfor %}
|
51
|
+
</div>
|
52
|
+
|
53
|
+
|
54
|
+
</div>
|
55
|
+
|
56
|
+
<div class="card-body" itemprop="articleBody">
|
57
|
+
{{ content }} {%- include share.html -%}
|
58
|
+
</div>
|
59
|
+
|
60
|
+
<div id="disqus_thread"></div>
|
61
|
+
|
62
|
+
</article>
|
63
|
+
|
64
|
+
</div>
|
65
|
+
|
66
|
+
<div class="col-lg-4">
|
67
|
+
|
68
|
+
<div class="card">
|
69
|
+
|
70
|
+
<div class="card-header">Categories </div>
|
71
|
+
<div class="card-body text-dark">
|
72
|
+
{% for tag in site.tags %} {% capture tag_name %}{{ tag | first }}{% endcapture %}
|
73
|
+
<div id="#{{ tag_name | slugize }}"></div>
|
74
|
+
<li class="tag-head">
|
75
|
+
<a href="{{ site.baseurl }}/blog/categories/{{ tag_name }}">{{ tag_name }}</a>
|
76
|
+
</li>
|
77
|
+
<a name="{{ tag_name | slugize }}"></a>
|
78
|
+
|
79
|
+
{% endfor %}
|
80
|
+
</div>
|
81
|
+
|
82
|
+
|
83
|
+
</div>
|
84
|
+
<div class="card">
|
85
|
+
<!-- Begin MailChimp Signup Form -->
|
86
|
+
<div id="mc_embed_signup">
|
87
|
+
<form action="https://programmingebooks.us10.list-manage.com/subscribe/post?u=50bab1c85eae24ecfb0f68361&id=3a2dd721d0"
|
88
|
+
method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate"
|
89
|
+
target="_blank" novalidate>
|
90
|
+
<div id="mc_embed_signup_scroll">
|
91
|
+
<label for="mce-EMAIL">Subscribe via Email :</label>
|
92
|
+
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
|
93
|
+
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
|
94
|
+
<div style="position: absolute; left: -5000px;" aria-hidden="true">
|
95
|
+
<input type="text" name="b_50bab1c85eae24ecfb0f68361_3a2dd721d0" tabindex="-1" value="">
|
96
|
+
</div>
|
97
|
+
<div class="clear">
|
98
|
+
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn btn-md btn-default">
|
99
|
+
</div>
|
100
|
+
</div>
|
101
|
+
</form>
|
102
|
+
</div>
|
103
|
+
</div>
|
104
|
+
</div>
|
105
|
+
<!-- End of Sidebar -->
|
106
|
+
|
107
|
+
|
108
|
+
</div>
|
109
|
+
|
110
|
+
</div>
|
111
|
+
{%- include footer.html -%}
|
112
|
+
</div>
|
113
|
+
|
114
|
+
|
28
115
|
<script>
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
s.setAttribute('data-timestamp', +new Date());
|
42
|
-
(d.head || d.body).appendChild(s);
|
43
|
-
})();
|
116
|
+
var disqus_config = function () {
|
117
|
+
this.page.url = "http://www.sujaykundu.com{{ page.url }}"; // Replace PAGE_URL with your page's canonical URL variable
|
118
|
+
this.page.identifier = "{{ page.id }}"; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
|
119
|
+
};
|
120
|
+
|
121
|
+
|
122
|
+
(function () { // DON'T EDIT BELOW THIS LINE
|
123
|
+
var d = document, s = d.createElement('script');
|
124
|
+
s.src = 'https://sujay-kundu.disqus.com/embed.js';
|
125
|
+
s.setAttribute('data-timestamp', +new Date());
|
126
|
+
(d.head || d.body).appendChild(s);
|
127
|
+
})();
|
44
128
|
</script>
|
45
|
-
<noscript>Please enable JavaScript to view the
|
46
|
-
|
47
|
-
|
129
|
+
<noscript>Please enable JavaScript to view the
|
130
|
+
<a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
|
131
|
+
</noscript>
|
132
|
+
|
133
|
+
</body>
|
48
134
|
|
49
|
-
</
|
135
|
+
</html>
|
data/_sass/devlog.scss
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
body{
|
2
|
+
background-color:#D6DDE1 !important;
|
3
|
+
font-family: 'Montserrat', sans-serif !important;
|
4
|
+
}
|
5
|
+
header{
|
6
|
+
background-color: #F5F5F5;
|
7
|
+
height: 200px;
|
8
|
+
width: 100%;
|
9
|
+
padding: 30px;
|
10
|
+
}
|
11
|
+
.container-fluid{
|
12
|
+
margin: 0px !important;
|
13
|
+
padding: 0px !important;
|
14
|
+
}
|
15
|
+
|
16
|
+
.profile-img{
|
17
|
+
width:150px;
|
18
|
+
height: 150px;
|
19
|
+
margin-left: 20px;
|
20
|
+
}
|
21
|
+
.profile-name{
|
22
|
+
margin-top: 20px;
|
23
|
+
|
24
|
+
}
|
25
|
+
.profile-bio,.profile-links{
|
26
|
+
margin-top:5px;
|
27
|
+
}
|
28
|
+
|
29
|
+
.border{
|
30
|
+
border: 1px solid #000;
|
31
|
+
}
|
32
|
+
.center{
|
33
|
+
text-align:center;
|
34
|
+
}
|
35
|
+
.card{
|
36
|
+
margin: 20px !important;
|
37
|
+
padding: 20px !important;
|
38
|
+
}
|
39
|
+
.social-link{
|
40
|
+
color: #262222;
|
41
|
+
font-size: 15px;
|
42
|
+
padding: 5px;
|
43
|
+
margin:2px;
|
44
|
+
}
|
45
|
+
#navigation{
|
46
|
+
margin-top: 50px;
|
47
|
+
}
|
48
|
+
.nav-link{
|
49
|
+
font-size: 24px !important;
|
50
|
+
color: #000;
|
51
|
+
}
|
52
|
+
footer{
|
53
|
+
width: 100%;
|
54
|
+
height: 70px;
|
55
|
+
text-align: center;
|
56
|
+
padding: 20px;
|
57
|
+
background-color: #F5F5F5;
|
58
|
+
}
|
59
|
+
|
60
|
+
.project-img{
|
61
|
+
width: 300px;
|
62
|
+
height: 200px;
|
63
|
+
}
|
64
|
+
.author-profile-img{
|
65
|
+
width: 50px;
|
66
|
+
height: 50px;
|
67
|
+
}
|
68
|
+
.project-desc{
|
69
|
+
float:left;
|
70
|
+
}
|
71
|
+
.project-link{
|
72
|
+
color: gray;
|
73
|
+
font-size: 15px;
|
74
|
+
}
|
75
|
+
.card-header{
|
76
|
+
border-radius: 0% !important;
|
77
|
+
}
|
78
|
+
@media (min-width: 320px) and (max-width: 780px){
|
79
|
+
|
80
|
+
header{
|
81
|
+
height: auto;
|
82
|
+
text-align: center;
|
83
|
+
}
|
84
|
+
|
85
|
+
|
86
|
+
}
|
Binary file
|
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.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sujay Kundu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -16,28 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '3.
|
19
|
+
version: '3.8'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '3.
|
26
|
+
version: '3.8'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '1.
|
33
|
+
version: '1.16'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '1.
|
40
|
+
version: '1.16'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '12.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '12.0'
|
41
55
|
description:
|
42
56
|
email:
|
43
57
|
- sujaykundu777@gmail.com
|
@@ -50,18 +64,17 @@ files:
|
|
50
64
|
- _includes/footer.html
|
51
65
|
- _includes/head.html
|
52
66
|
- _includes/header.html
|
67
|
+
- _includes/share.html
|
68
|
+
- _includes/sidebar.html
|
53
69
|
- _layouts/blog.html
|
54
70
|
- _layouts/default.html
|
55
|
-
- _layouts/
|
71
|
+
- _layouts/homepage.html
|
56
72
|
- _layouts/page.html
|
57
73
|
- _layouts/post.html
|
58
|
-
-
|
59
|
-
- assets/
|
60
|
-
- assets/
|
61
|
-
|
62
|
-
- index.md
|
63
|
-
- projects.md
|
64
|
-
homepage: https://github.com/sujaykundu777/devlopr.git
|
74
|
+
- _sass/devlog.scss
|
75
|
+
- assets/css/main.scss
|
76
|
+
- assets/images/profile.png
|
77
|
+
homepage: https://www.sujaykundu.com
|
65
78
|
licenses:
|
66
79
|
- MIT
|
67
80
|
metadata: {}
|
@@ -81,8 +94,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
94
|
version: '0'
|
82
95
|
requirements: []
|
83
96
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.5.2
|
97
|
+
rubygems_version: 2.5.2.1
|
85
98
|
signing_key:
|
86
99
|
specification_version: 4
|
87
|
-
summary: A
|
100
|
+
summary: A Theme built for developers
|
88
101
|
test_files: []
|