devlopr 0.1.6 → 0.1.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f89f988809a53d8c609305d826bba87d19a2660f
4
- data.tar.gz: 3b4d57f1af23fe258e62939c10f194a56091c568
3
+ metadata.gz: ccf311e61ad08ec99879018e00f4673c245bff06
4
+ data.tar.gz: 713d3f146b578a58c06819e08fd1a7c1ef32463b
5
5
  SHA512:
6
- metadata.gz: e4722071affca6850c9bad6cdcce98ad6f5f3a669a199bcdd7a542d3c0bcda891a3e2f29a900daa87917df467b279035da7412aae58b5ec06ca72e50bcdd8268
7
- data.tar.gz: a266cad44fc2a0428ff1d9a598c65223d0f93eac611118b55100f104b0d216ac90cfbe5d17409bc92834f05f9d0f472b9d78f2474fb6cb1c5a05137230479847
6
+ metadata.gz: 2e60657f128fa41957ee84c13c6beda11c2ddd6c41df6e18ed8416f12d802983b7eb4a229191a982999fc98860063d968ac1877550a4d977a732609c3b9910e5
7
+ data.tar.gz: d02121b511153d5f195b5e265c9d5b7c27ee2509f0fce3e29bec7d28d91a5f6d34b5adbf6bed62c3b64921bc247b09fd5f1927f133cb2ce312e523e1adaacf35
data/README.md CHANGED
@@ -59,3 +59,12 @@ title, description, name , bio
59
59
  twitter_username, facebook_username, medium_username , telegram_username, behance_username, github_username ,
60
60
  instagram_username
61
61
 
62
+ # Add blog section
63
+
64
+ Create a new file blog.md file with following content
65
+
66
+ ```
67
+ ---
68
+ layout: blog
69
+ title: Blog
70
+ ```
@@ -8,8 +8,8 @@
8
8
  </a>
9
9
  </div>
10
10
  <div class="col-md-4">
11
- <h1 class="profile-name"> {{ site.name }}</h1>
12
- <p class="profile-bio"> {{ site.bio }}</p>
11
+ <h1 class="profile-name"> {{ site.title }}</h1>
12
+ <p class="profile-bio"> {{ site.subtitle }}</p>
13
13
  <p class="profile-links">
14
14
  <a class="social-link" href="http://twitter.com/{{ site.twitter_username }}">
15
15
  <i class="fab fa-twitter"></i>
@@ -41,16 +41,18 @@
41
41
  <div class="col-md-6 center">
42
42
 
43
43
  <ul class="nav justify-content-end" id="navigation">
44
+ {%- assign default_paths = site.pages | map: "path" -%} {%- assign page_paths = site.header_pages | default: default_paths-%}
45
+ {%- if page_paths -%} {%- for path in page_paths -%} {%- assign my_page = site.pages | where: "path",path
46
+ | first -%} {%- if my_page.title -%}
44
47
  <li class="nav-item">
45
- <a class="nav-link" href="/"> RESUME </a>
46
- </li>
47
- <li class="nav-item">
48
- <a class="nav-link " href="/blog">BLOG</a>
49
- </li>
50
- <li class="nav-item">
51
- <a class="nav-link" href="/contact">CONTACT ME</a>
48
+ <a class="nav-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
52
49
  </li>
50
+ {%- endif -%} {%- endfor -%}
51
+
53
52
  </ul>
53
+
54
+ {%- endif -%}
55
+
54
56
  </div>
55
57
  </div>
56
58
  </div>
@@ -0,0 +1,16 @@
1
+ <div id="mc_embed_signup">
2
+ <form action="https://programmingebooks.us10.list-manage.com/subscribe/post?u=50bab1c85eae24ecfb0f68361&amp;id=3a2dd721d0"
3
+ method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
4
+ <div id="mc_embed_signup_scroll">
5
+ <label for="mce-EMAIL">Subscribe via Email :</label>
6
+ <input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
7
+ <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
8
+ <div style="position: absolute; left: -5000px;" aria-hidden="true">
9
+ <input type="text" name="b_50bab1c85eae24ecfb0f68361_3a2dd721d0" tabindex="-1" value="">
10
+ </div>
11
+ <div class="clear">
12
+ <input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn btn-md btn-default">
13
+ </div>
14
+ </div>
15
+ </form>
16
+ </div>
data/_layouts/blog.html CHANGED
@@ -1,86 +1,49 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
1
+ --- layout: default ---
3
2
 
4
- {%- include head.html -%}
3
+ <div class="row">
5
4
 
6
- <body>
7
- <div class="container-fluid">
5
+ <div class="col-lg-8">
6
+ <ul>
7
+ {% for post in site.posts %}
8
+ <div class="card blog-post">
9
+ <img class="card-img-top" src="{{site.url}}/assets/img/blog/posts/{{ post.thumbnail }}" alt="{{ post.title }}">
10
+ <div class="card-body center">
11
+ <img src="{{site.url}}/assets/img/user/sujay.png" class="author-profile-img">
12
+ <h4 class="card-title">{{ post.title }}</h4>
8
13
 
9
- {%- include header.html -%}
14
+ <h6 class="card-subtitle mb-2 text-muted">{{ post.date | date: "%b %-d, %Y" }}</h6>
15
+ <p class="card-text">{{ post.summary }} </p>
10
16
 
11
- <div class="col-lg-12">
12
-
13
-
14
- <div class="row">
15
-
16
- <div class="col-lg-8">
17
- <ul>
18
- {% for post in site.posts %}
19
- <div class="card blog-post">
20
- <img class="card-img-top" src="{{site.url}}/assets/img/blog/posts/{{ post.thumbnail }}" alt="{{ post.title }}">
21
- <div class="card-body center">
22
- <img src="{{site.url}}/assets/img/user/sujay.png" class="author-profile-img">
23
- <h4 class="card-title">{{ post.title }}</h4>
24
-
25
- <h6 class="card-subtitle mb-2 text-muted">{{ post.date | date: "%b %-d, %Y" }}</h6>
26
- <p class="card-text">{{ post.summary }} </p>
27
-
28
- <a href="{{ post.url | prepend: site.baseurl }}" data-disqus-identifier="{{ post.url }}" class="btn btn-primary btn-lg">Read</a>
29
- <span class="disqus-comment-count" data-disqus-identifier="{{ post.url }}"></span>
30
-
31
- </div>
32
- </div>
33
-
34
- {% endfor %}
35
- </ul>
17
+ <a href="{{ post.url | prepend: site.baseurl }}" data-disqus-identifier="{{ post.url }}" class="btn btn-primary btn-lg">Read</a>
18
+ <span class="disqus-comment-count" data-disqus-identifier="{{ post.url }}"></span>
36
19
 
37
20
  </div>
21
+ </div>
38
22
 
39
- <div class="col-lg-4">
40
-
41
- <div class="card">
42
-
43
- <div class="card-header">Categories </div>
44
- <div class="card-body text-dark">
45
- {% for tag in site.tags %} {% capture tag_name %}{{ tag | first }}{% endcapture %}
46
- <div id="#{{ tag_name | slugize }}"></div>
47
- <li class="tag-head">
48
- <a href="{{ site.baseurl }}/blog/categories/{{ tag_name }}">{{ tag_name }}</a>
49
- </li>
50
- <a name="{{ tag_name | slugize }}"></a>
23
+ {% endfor %}
24
+ </ul>
25
+ </div>
51
26
 
52
- {% endfor %}
53
- </div>
27
+ <div class="col-lg-4">
54
28
 
29
+ <div class="card">
55
30
 
56
- </div>
57
- <div class="card">
58
- <!-- Begin MailChimp Signup Form -->
59
- <div id="mc_embed_signup">
60
- <form action="https://programmingebooks.us10.list-manage.com/subscribe/post?u=50bab1c85eae24ecfb0f68361&amp;id=3a2dd721d0"
61
- method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate"
62
- target="_blank" novalidate>
63
- <div id="mc_embed_signup_scroll">
64
- <label for="mce-EMAIL">Subscribe via Email :</label>
65
- <input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
66
- <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
67
- <div style="position: absolute; left: -5000px;" aria-hidden="true">
68
- <input type="text" name="b_50bab1c85eae24ecfb0f68361_3a2dd721d0" tabindex="-1" value="">
69
- </div>
70
- <div class="clear">
71
- <input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn btn-md btn-default">
72
- </div>
73
- </div>
74
- </form>
75
- </div>
76
- </div>
77
- </div>
31
+ <div class="card-header">Categories </div>
32
+ <div class="card-body text-dark">
33
+ {% for tag in site.categories %} {% capture tag_name %}{{ tag | first }}{% endcapture %}
34
+ <div id="#{{ tag_name | slugize }}"></div>
35
+ <li class="tag-head">
36
+ <a href="{{ site.baseurl }}/blog/categories/{{ tag_name }}">{{ tag_name }}</a>
37
+ </li>
38
+ <a name="{{ tag_name | slugize }}"></a>
78
39
 
40
+ {% endfor %}
79
41
  </div>
80
42
 
81
- </div>
82
- {%- include footer.html -%}
83
- </div>
84
- </body>
85
43
 
86
- </html>
44
+ </div>
45
+ <div class="card">
46
+ <!-- Begin MailChimp Signup Form -->
47
+ {%- include newsletter.html -%}
48
+ </div>
49
+ </div>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <html lang="en">
2
+ <html lang="{{ page.lang | default: site.lang | default: " en " }}">
3
3
 
4
4
  {%- include head.html -%}
5
5
 
@@ -10,11 +10,7 @@
10
10
 
11
11
  <div class="col-lg-12">
12
12
 
13
- <div class="card">
14
-
15
- {{ content }}
16
-
17
- </div>
13
+ {{ content }}
18
14
 
19
15
  </div>
20
16
 
data/_layouts/home.html CHANGED
@@ -1,107 +1,87 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
1
+ ---
2
+ layout: default
3
+ ---
3
4
 
4
- {%- include head.html -%}
5
5
 
6
- <body>
7
- <div class="container-fluid">
8
- {%- include header.html -%}
6
+ <div class="row">
9
7
 
10
- <div class="col-lg-12">
8
+ <div class="col-lg-8">
11
9
 
12
- <div class="row">
10
+ <div class="card">
11
+ <h1 class="card-title">About Me</h1>
12
+
13
+ <p> {{ site.author_bio }} </p>
14
+ </div>
15
+
16
+ <div class="card">
17
+ <h1 class="card-title"> Work Experience</h1>
18
+
19
+ <br />
20
+ <h4 class="experience-title"> Full Stack Web Developer Intern - Skillenza</h4>
21
+ <p class="experience-desc"> Worked on Flask, Postgres to build rest apis for Email Campaign Management</p>
22
+
23
+ <br />
24
+ <h4 class="experience-title"> Front End Developer Intern - Glocal Gurus</h4>
25
+ <p class="experience-desc"> Worked on converting UI to Frontend Pages using HTML, CSS, JS</p>
13
26
 
14
- <div class="col-lg-8">
15
-
16
- <div class="card">
17
- <h1 class="card-title">About Me</h1>
18
-
19
- <p> Hi I am a full stack web developer and freelancer based in India. I enjoy experimenting with new
20
- technologies and love anything related to hacking. I tend to follow startup scenes and also enjoy
21
- gaming. </p>
22
- </div>
23
-
24
- <div class="card">
25
- <h1 class="card-title"> Work Experience</h1>
26
-
27
- <br />
28
- <h4 class="experience-title"> Full Stack Web Developer Intern - Skillenza</h4>
29
- <p class="experience-desc"> Worked on Flask, Postgres to build rest apis for Email Campaign Management</p>
30
-
31
- <br />
32
- <h4 class="experience-title"> Front End Developer Intern - Glocal Gurus</h4>
33
- <p class="experience-desc"> Worked on converting UI to Frontend Pages using HTML, CSS, JS</p>
34
-
35
- <br />
36
- <h4 class="experience-title"> Wordpress Intern - Edugorilla </h4>
37
- <p class="experience-desc"> Worked in design and development of website using PHP and Wordress </p>
38
-
39
- </div>
40
-
41
- <div class="card">
42
- <h1 class="card-title"> Latest Projects</h1>
43
-
44
- <br />
45
- <div class="row">
46
- <div class="col-md-5">
47
- <img src="{{site.url}}/assets/img/projects/gamershub.png" class="project-img" />
48
- </div>
49
- <div class="col-md-5">
50
- <h4 class="project-title"> Gamers Hub </h4>
51
- <p class="project-desc"> A Platform built for Gamers and Game Developers built using NodeJS, VueJS, MongoDB</p>
52
- <a class="project-link" href="https://gamershub.in">https://gamershub.in</a>
53
- </div>
54
- </div>
55
-
56
- <br />
57
- <div class="row">
58
- <div class="col-md-5">
59
- <img src="{{site.url}}/assets/img/projects/hackify.png" class="project-img" />
60
- </div>
61
- <div class="col-md-5">
62
- <h4 class="project-title"> Hackify Theme for Atom Editor </h4>
63
- <p class="project-desc"> A dark hacking theme for Atom Editor</p>
64
- <a class="project-link" href="http://atom.io/themes/hackify-ui">Hackify UI</a>
65
- </div>
66
- </div>
67
-
68
- </div>
27
+ <br />
28
+ <h4 class="experience-title"> Wordpress Intern - Edugorilla </h4>
29
+ <p class="experience-desc"> Worked in design and development of website using PHP and Wordress </p>
69
30
 
31
+ </div>
32
+
33
+ <div class="card">
34
+ <h1 class="card-title"> Latest Projects</h1>
35
+
36
+ <br />
37
+ <div class="row">
38
+ <div class="col-md-5">
39
+ <img src="{{site.url}}/assets/img/projects/gamershub.png" class="project-img" />
40
+ </div>
41
+ <div class="col-md-5">
42
+ <h4 class="project-title"> Gamers Hub </h4>
43
+ <p class="project-desc"> A Platform built for Gamers and Game Developers built using NodeJS, VueJS, MongoDB</p>
44
+ <a class="project-link" href="https://gamershub.in">https://gamershub.in</a>
70
45
  </div>
71
- <div class="col-lg-4">
72
-
73
- <div class="card">
74
- <h6>
75
- <i class="fas fa-at"></i>
76
- <b>sujaykundu777</b>
77
- </h6>
78
- <h6>
79
- <i class="fas fa-map-marker-alt"></i> Bangalore, India</h6>
80
- <h6>
81
- <i class="fas fa-envelope"></i> sujaykundu777@gmail.com</h6>
82
- <h6>
83
- <i class="fas fa-link"></i> https://sujaykundu.com</h6>
84
- <h6>
85
- <i class="fas fa-link"></i> https://kalitutor.com</h6>
86
-
87
- </div>
88
-
89
- <div class="card">
90
- <h1> Skills </h1>
91
- <p> HTML , CSS , Javascript , PHP, Python, C</p>
92
- <p> Adobe XD, Inkscape, Git, Linux </p>
93
- </div>
94
-
95
- <div class="card">
96
- <h1> Github </h1>
97
- </div>
46
+ </div>
98
47
 
48
+ <br />
49
+ <div class="row">
50
+ <div class="col-md-5">
51
+ <img src="{{site.url}}/assets/img/projects/hackify.png" class="project-img" />
52
+ </div>
53
+ <div class="col-md-5">
54
+ <h4 class="project-title"> Hackify Theme for Atom Editor </h4>
55
+ <p class="project-desc"> A dark hacking theme for Atom Editor</p>
56
+ <a class="project-link" href="http://atom.io/themes/hackify-ui">Hackify UI</a>
99
57
  </div>
100
58
  </div>
101
59
 
102
60
  </div>
103
- {%- include footer.html -%}
61
+
104
62
  </div>
105
- </body>
63
+ <div class="col-lg-4">
64
+
65
+ <div class="card">
66
+
67
+ <h6>
68
+ <i class="fas fa-map-marker-alt"></i> {{ site.author_location }}</h6>
69
+ <h6>
70
+ <i class="fas fa-envelope"></i> {{ site.author_email }}</h6>
71
+ <h6>
72
+ <i class="fas fa-link"></i> {{ site.author_website_url }} </h6>
73
+
74
+ </div>
106
75
 
107
- </html>
76
+ <div class="card">
77
+ <h1> Skills </h1>
78
+ <p> HTML , CSS , Javascript , PHP, Python, C</p>
79
+ <p> Adobe XD, Inkscape, Git, Linux </p>
80
+ </div>
81
+
82
+ <div class="card">
83
+ <h1> Github </h1>
84
+ </div>
85
+
86
+ </div>
87
+ </div>
data/_layouts/page.html CHANGED
@@ -1,90 +1,9 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
1
+ ---
2
+ layout: default
3
+ ---
3
4
 
4
- {%- include head.html -%}
5
+ <div class="card">
5
6
 
6
- <body>
7
- <div class="container-fluid">
7
+ {{ content }}
8
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&amp;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>
9
+ </div>
data/_layouts/post.html CHANGED
@@ -1,135 +1,118 @@
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 %}&nbsp;{% endunless %} {% endfor %}
51
- </div>
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <nav aria-label="breadcrumb" role="navigation">
6
+ <ol class="breadcrumb">
7
+ <li class="breadcrumb-item">
8
+ <a href="/blog">Blog</a>
9
+ </li>
10
+ <li class="breadcrumb-item">
11
+ <a href="/blog/categories">Categories</a>
12
+ </li>
13
+ <li class="breadcrumb-item active" aria-current="page">{{ page.title }}</li>
14
+ </ol>
15
+ </nav>
16
+
17
+ <div class="row">
18
+
19
+ <div class="col-lg-8">
20
+
21
+ <article class="card" itemscope itemtype="http://schema.org/BlogPosting">
22
+
23
+
24
+ <div class="card-header">
25
+ <!-- <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1> -->
26
+ <h4 class="post-meta">{{ page.summary }}</h4>
27
+ <p class="post-summary">Posted by : {% if page.author %}
28
+ <img src="https://www.sujaykundu.com/assets/images/brand/sujay.png" class="author-profile-img">
29
+ <span itemprop="author" itemscope itemtype="http://schema.org/Person">
30
+ <span itemprop="name">{{ page.author }}</span>
31
+ </span>{% endif %} at
32
+ <time datetime="{{ page.date }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>
33
+ </p>
34
+ <span class="disqus-comment-count" data-disqus-identifier="{{ page.url }}"></span>
35
+ <p>
36
+ {%- include share.html -%}
37
+ </p>
38
+ <div class="post-categories">
39
+ {% if post %} {% assign categories = post.categories %} {% else %} {% assign categories = page.categories %} {% endif %}
40
+ Category : {% for category in categories %}
41
+ <a href="{{site.baseurl}}/blog/categories/{{category|slugize}}">{{category}}</a>
42
+ {% unless forloop.last %}&nbsp;{% endunless %} {% endfor %}
43
+ </div>
52
44
 
53
45
 
54
- </div>
46
+ </div>
55
47
 
56
- <div class="card-body" itemprop="articleBody">
57
- {{ content }} {%- include share.html -%}
58
- </div>
48
+ <div class="card-body" itemprop="articleBody">
49
+ {{ content }} {%- include share.html -%}
50
+ </div>
59
51
 
60
- <div id="disqus_thread"></div>
52
+ <div id="disqus_thread"></div>
61
53
 
62
- </article>
54
+ </article>
63
55
 
64
- </div>
56
+ </div>
65
57
 
66
- <div class="col-lg-4">
58
+ <div class="col-lg-4">
67
59
 
68
- <div class="card">
60
+ <div class="card">
69
61
 
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>
62
+ <div class="card-header">Categories </div>
63
+ <div class="card-body text-dark">
64
+ {% for tag in site.categories %} {% capture tag_name %}{{ tag | first }}{% endcapture %}
65
+ <div id="#{{ tag_name | slugize }}"></div>
66
+ <li class="tag-head">
67
+ <a href="{{ site.baseurl }}/blog/categories/{{ tag_name }}">{{ tag_name }}</a>
68
+ </li>
69
+ <a name="{{ tag_name | slugize }}"></a>
78
70
 
79
- {% endfor %}
80
- </div>
71
+ {% endfor %}
72
+ </div>
81
73
 
82
74
 
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&amp;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>
75
+ </div>
76
+ <div class="card">
77
+ <!-- Begin MailChimp Signup Form -->
78
+ <div id="mc_embed_signup">
79
+ <form action="https://programmingebooks.us10.list-manage.com/subscribe/post?u=50bab1c85eae24ecfb0f68361&amp;id=3a2dd721d0"
80
+ method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank"
81
+ novalidate>
82
+ <div id="mc_embed_signup_scroll">
83
+ <label for="mce-EMAIL">Subscribe via Email :</label>
84
+ <input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
85
+ <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
86
+ <div style="position: absolute; left: -5000px;" aria-hidden="true">
87
+ <input type="text" name="b_50bab1c85eae24ecfb0f68361_3a2dd721d0" tabindex="-1" value="">
88
+ </div>
89
+ <div class="clear">
90
+ <input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn btn-md btn-default">
102
91
  </div>
103
92
  </div>
104
- </div>
105
- <!-- End of Sidebar -->
106
-
107
-
93
+ </form>
108
94
  </div>
109
-
110
95
  </div>
111
- {%- include footer.html -%}
112
96
  </div>
97
+ <!-- End of Sidebar -->
113
98
 
114
-
115
- <script>
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
- })();
99
+ </div>
100
+
101
+ <script>
102
+ var disqus_config = function () {
103
+ this.page.url = "http://www.sujaykundu.com{{ page.url }}"; // Replace PAGE_URL with your page's canonical URL variable
104
+ this.page.identifier = "{{ page.id }}"; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
105
+ };
106
+
107
+
108
+ (function () { // DON'T EDIT BELOW THIS LINE
109
+ var d = document,
110
+ s = d.createElement('script');
111
+ s.src = 'https://sujay-kundu.disqus.com/embed.js';
112
+ s.setAttribute('data-timestamp', +new Date());
113
+ (d.head || d.body).appendChild(s);
114
+ })();
128
115
  </script>
129
116
  <noscript>Please enable JavaScript to view the
130
- <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
117
+ <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
131
118
  </noscript>
132
-
133
- </body>
134
-
135
- </html>
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.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sujay Kundu
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-03 00:00:00.000000000 Z
11
+ date: 2018-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -64,6 +64,7 @@ files:
64
64
  - _includes/footer.html
65
65
  - _includes/head.html
66
66
  - _includes/header.html
67
+ - _includes/newsletter.html
67
68
  - _includes/share.html
68
69
  - _includes/sidebar.html
69
70
  - _layouts/blog.html