devlopr 0.3.0 → 0.3.1

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 (66) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -21
  3. data/README.md +16 -58
  4. data/_includes/author_bio.html +1 -0
  5. data/_includes/author_projects.html +23 -0
  6. data/_includes/author_skills.html +2 -0
  7. data/_includes/author_work_experience.html +24 -0
  8. data/_includes/blog_categories.html +9 -0
  9. data/_includes/blog_newsletters.html +18 -0
  10. data/_includes/blog_post_article.html +26 -0
  11. data/_includes/blog_post_breadcrumb.html +11 -0
  12. data/_includes/blog_posts.html +22 -0
  13. data/_includes/blog_sidebar.html +18 -0
  14. data/_includes/{activity.html → coding_activity.html} +10 -8
  15. data/_includes/contact_me_form.html +16 -0
  16. data/_includes/footer.html +6 -6
  17. data/_includes/head.html +43 -43
  18. data/_includes/header.html +59 -59
  19. data/_layouts/about_me.html +45 -0
  20. data/_layouts/blog.html +15 -58
  21. data/_layouts/compress.html +10 -0
  22. data/_layouts/contact_me.html +9 -0
  23. data/_layouts/default.html +25 -21
  24. data/_layouts/my_projects.html +11 -0
  25. data/_layouts/page.html +8 -8
  26. data/_layouts/post.html +20 -102
  27. data/_posts/2016-05-20-super-long-article.md +17 -0
  28. data/_posts/2016-05-20-this-post-demonstrates-post-content-styles.md +109 -0
  29. data/_posts/2016-05-20-welcome-to-jekyll.md +29 -0
  30. data/_sass/devlog.scss +133 -133
  31. metadata +36 -53
  32. data/_includes/newsletter.html +0 -16
  33. data/_includes/share.html +0 -13
  34. data/_includes/sidebar.html +0 -1
  35. data/_layouts/about.html +0 -105
  36. data/assets/css/main.scss +0 -5
  37. data/assets/img/favicon.ico +0 -0
  38. data/assets/img/posts/gitflow-workflow.png +0 -0
  39. data/assets/img/posts/hello.jpg +0 -0
  40. data/assets/img/posts/useful-tools.jpg +0 -0
  41. data/assets/img/profile.png +0 -0
  42. data/assets/img/projects/CBSHOYEUkAAxfSm.png_large +0 -0
  43. data/assets/img/projects/Music.png +0 -0
  44. data/assets/img/projects/alex.png +0 -0
  45. data/assets/img/projects/amigosevents.png +0 -0
  46. data/assets/img/projects/blogmapia.png +0 -0
  47. data/assets/img/projects/devlopr.png +0 -0
  48. data/assets/img/projects/foobar-1.png +0 -0
  49. data/assets/img/projects/foobar.png +0 -0
  50. data/assets/img/projects/frutzi.png +0 -0
  51. data/assets/img/projects/gamershub.png +0 -0
  52. data/assets/img/projects/hackify.png +0 -0
  53. data/assets/img/projects/klj.png +0 -0
  54. data/assets/img/projects/musifier.png +0 -0
  55. data/assets/img/projects/peb.png +0 -0
  56. data/assets/img/projects/programmingebooks_frnt.png +0 -0
  57. data/assets/img/projects/react-router.png +0 -0
  58. data/assets/img/projects/screencapture-file-C-Users-Sujay-20Kundu-Downloads-Co.png +0 -0
  59. data/assets/img/projects/screenshotmy.png +0 -0
  60. data/assets/img/projects/snap2.jpg +0 -0
  61. data/assets/img/projects/snap3.jpg +0 -0
  62. data/assets/img/styleguide.png +0 -0
  63. data/assets/img/work/google.png +0 -0
  64. data/assets/img/work/microsoft.png +0 -0
  65. data/assets/img/work/skillenza.png +0 -0
  66. data/assets/img/zoom.jpg +0 -0
@@ -0,0 +1,29 @@
1
+ ---
2
+ layout: post
3
+ title: Welcome to devlopr!
4
+ author: Sujay Kundu
5
+ date: '2017-11-19 14:35:23 +0530'
6
+ category: personal
7
+ summary: My First Post
8
+ thumbnail: posts/hello.jpg
9
+ ---
10
+
11
+ You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
12
+
13
+ To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
14
+
15
+ Jekyll also offers powerful support for code snippets:
16
+
17
+ {% highlight ruby %}
18
+ def print_hi(name)
19
+ puts "Hi, #{name}"
20
+ end
21
+ print_hi('Tom')
22
+ #=> prints 'Hi, Tom' to STDOUT.
23
+ {% endhighlight %}
24
+
25
+ Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
26
+
27
+ [jekyll-docs]: http://jekyllrb.com/docs/home
28
+ [jekyll-gh]: https://github.com/jekyll/jekyll
29
+ [jekyll-talk]: https://talk.jekyllrb.com/
@@ -1,134 +1,134 @@
1
- body {
2
- background-color: #D6DDE1 !important;
3
- font-family: 'Quicksand', sans-serif !important;
4
- }
5
-
6
- header {
7
- background-color: #F5F5F5;
8
- box-shadow: 10px 0px 8px;
9
- height: 200px;
10
- width: 100%;
11
- padding: 11px;
12
- }
13
-
14
- .container-fluid {
15
- margin: 0px !important;
16
- padding: 0px !important;
17
- }
18
-
19
- .profile-img {
20
- width: 150px;
21
- height: 150px;
22
- margin-left: 20px;
23
- }
24
-
25
- .profile-name {
26
- margin-top: 20px;
27
- }
28
-
29
- .profile-bio,
30
- .profile-links {
31
- margin-top: 5px;
32
- }
33
-
34
- .border {
35
- border: 1px solid #000;
36
- }
37
-
38
- .center {
39
- text-align: center;
40
- }
41
-
42
- .card {
43
- margin: 20px !important;
44
- padding: 20px !important;
45
- }
46
-
47
- .social-link {
48
- color: #262222;
49
- font-size: 15px;
50
- padding: 5px;
51
- margin: 2px;
52
- }
53
-
54
- #navigation {
55
- margin-top: 50px;
56
- }
57
-
58
- .nav-link {
59
- font-size: 24px !important;
60
- color: #000;
61
- }
62
-
63
- footer {
64
- width: 100%;
65
- height: 70px;
66
- text-align: center;
67
- padding: 20px;
68
- background-color: #F5F5F5;
69
- }
70
-
71
- .company-logo {
72
- width: 100px;
73
- height: 100px;
74
- }
75
-
76
- .project-img {
77
- width: 300px;
78
- height: 200px;
79
- }
80
-
81
- .author-profile-img {
82
- width: 50px;
83
- height: 50px;
84
- }
85
-
86
- .project-desc {
87
- float: left;
88
- }
89
-
90
- .project-link {
91
- color: gray;
92
- font-size: 15px;
93
- }
94
-
95
- .card-header {
96
- border-radius: 0% !important;
97
- }
98
-
99
- .blog-post {
100
- width: 350px;
101
- height: auto;
102
- margin: 20px !important;
103
- }
104
-
105
- .responsive-table {
106
- display: block;
107
- width: 100%;
108
- overflow-x: auto;
109
- }
110
-
111
- pre,
112
- code {
113
- overflow: auto;
114
- white-space: pre-wrap;
115
- word-wrap: break-word;
116
- word-break: break-all;
117
- font-family: Courier, monospace;
118
- font-size: 16px;
119
- background-color: #F4F6F8;
120
- padding: 5px;
121
- display: block;
122
- }
123
-
124
- @media (min-width: 320px) and (max-width: 780px) {
125
- header {
126
- height: auto;
127
- text-align: center;
128
- }
129
- .blog-post {
130
- width: 300px;
131
- height: auto;
132
- margin-left: -20px !important;
133
- }
1
+ body {
2
+ background-color: #D6DDE1 !important;
3
+ font-family: 'Quicksand', sans-serif !important;
4
+ }
5
+
6
+ header {
7
+ background-color: #F5F5F5;
8
+ box-shadow: 10px 0px 8px;
9
+ height: 200px;
10
+ width: 100%;
11
+ padding: 11px;
12
+ }
13
+
14
+ .container-fluid {
15
+ margin: 0px !important;
16
+ padding: 0px !important;
17
+ }
18
+
19
+ .profile-img {
20
+ width: 150px;
21
+ height: 150px;
22
+ margin-left: 20px;
23
+ }
24
+
25
+ .profile-name {
26
+ margin-top: 20px;
27
+ }
28
+
29
+ .profile-bio,
30
+ .profile-links {
31
+ margin-top: 5px;
32
+ }
33
+
34
+ .border {
35
+ border: 1px solid #000;
36
+ }
37
+
38
+ .center {
39
+ text-align: center;
40
+ }
41
+
42
+ .card {
43
+ margin: 20px !important;
44
+ padding: 20px !important;
45
+ }
46
+
47
+ .social-link {
48
+ color: #262222;
49
+ font-size: 15px;
50
+ padding: 5px;
51
+ margin: 2px;
52
+ }
53
+
54
+ #navigation {
55
+ margin-top: 50px;
56
+ }
57
+
58
+ .nav-link {
59
+ font-size: 24px !important;
60
+ color: #000;
61
+ }
62
+
63
+ footer {
64
+ width: 100%;
65
+ height: 70px;
66
+ text-align: center;
67
+ padding: 20px;
68
+ background-color: #F5F5F5;
69
+ }
70
+
71
+ .company-logo {
72
+ width: 100px;
73
+ height: 100px;
74
+ }
75
+
76
+ .project-img {
77
+ width: 300px;
78
+ height: 200px;
79
+ }
80
+
81
+ .author-profile-img {
82
+ width: 50px;
83
+ height: 50px;
84
+ }
85
+
86
+ .project-desc {
87
+ float: left;
88
+ }
89
+
90
+ .project-link {
91
+ color: gray;
92
+ font-size: 15px;
93
+ }
94
+
95
+ .card-header {
96
+ border-radius: 0% !important;
97
+ }
98
+
99
+ .blog-post {
100
+ width: 350px;
101
+ height: auto;
102
+ margin: 20px !important;
103
+ }
104
+
105
+ .responsive-table {
106
+ display: block;
107
+ width: 100%;
108
+ overflow-x: auto;
109
+ }
110
+
111
+ pre,
112
+ code {
113
+ overflow: auto;
114
+ white-space: pre-wrap;
115
+ word-wrap: break-word;
116
+ word-break: break-all;
117
+ font-family: Courier, monospace;
118
+ font-size: 16px;
119
+ background-color: #F4F6F8;
120
+ padding: 5px;
121
+ display: block;
122
+ }
123
+
124
+ @media (min-width: 320px) and (max-width: 780px) {
125
+ header {
126
+ height: auto;
127
+ text-align: center;
128
+ }
129
+ .blog-post {
130
+ width: 300px;
131
+ height: auto;
132
+ margin-left: -20px !important;
133
+ }
134
134
  }
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devlopr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
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-06-22 00:00:00.000000000 Z
11
+ date: 2019-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: jekyll
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '3.8'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '3.8'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: jekyll-sitemap
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -84,6 +70,20 @@ dependencies:
84
70
  - - ">="
85
71
  - !ruby/object:Gem::Version
86
72
  version: 2.6.1
73
+ - !ruby/object:Gem::Dependency
74
+ name: jekyll
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: '3.8'
80
+ type: :runtime
81
+ prerelease: false
82
+ version_requirements: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - "~>"
85
+ - !ruby/object:Gem::Version
86
+ version: '3.8'
87
87
  - !ruby/object:Gem::Dependency
88
88
  name: bundler
89
89
  requirement: !ruby/object:Gem::Requirement
@@ -127,50 +127,33 @@ extra_rdoc_files: []
127
127
  files:
128
128
  - LICENSE.txt
129
129
  - README.md
130
- - _includes/activity.html
130
+ - _includes/author_bio.html
131
+ - _includes/author_projects.html
132
+ - _includes/author_skills.html
133
+ - _includes/author_work_experience.html
134
+ - _includes/blog_categories.html
135
+ - _includes/blog_newsletters.html
136
+ - _includes/blog_post_article.html
137
+ - _includes/blog_post_breadcrumb.html
138
+ - _includes/blog_posts.html
139
+ - _includes/blog_sidebar.html
140
+ - _includes/coding_activity.html
141
+ - _includes/contact_me_form.html
131
142
  - _includes/footer.html
132
143
  - _includes/head.html
133
144
  - _includes/header.html
134
- - _includes/newsletter.html
135
- - _includes/share.html
136
- - _includes/sidebar.html
137
- - _layouts/about.html
145
+ - _layouts/about_me.html
138
146
  - _layouts/blog.html
147
+ - _layouts/compress.html
148
+ - _layouts/contact_me.html
139
149
  - _layouts/default.html
150
+ - _layouts/my_projects.html
140
151
  - _layouts/page.html
141
152
  - _layouts/post.html
153
+ - _posts/2016-05-20-super-long-article.md
154
+ - _posts/2016-05-20-this-post-demonstrates-post-content-styles.md
155
+ - _posts/2016-05-20-welcome-to-jekyll.md
142
156
  - _sass/devlog.scss
143
- - assets/css/main.scss
144
- - assets/img/favicon.ico
145
- - assets/img/posts/gitflow-workflow.png
146
- - assets/img/posts/hello.jpg
147
- - assets/img/posts/useful-tools.jpg
148
- - assets/img/profile.png
149
- - assets/img/projects/CBSHOYEUkAAxfSm.png_large
150
- - assets/img/projects/Music.png
151
- - assets/img/projects/alex.png
152
- - assets/img/projects/amigosevents.png
153
- - assets/img/projects/blogmapia.png
154
- - assets/img/projects/devlopr.png
155
- - assets/img/projects/foobar-1.png
156
- - assets/img/projects/foobar.png
157
- - assets/img/projects/frutzi.png
158
- - assets/img/projects/gamershub.png
159
- - assets/img/projects/hackify.png
160
- - assets/img/projects/klj.png
161
- - assets/img/projects/musifier.png
162
- - assets/img/projects/peb.png
163
- - assets/img/projects/programmingebooks_frnt.png
164
- - assets/img/projects/react-router.png
165
- - assets/img/projects/screencapture-file-C-Users-Sujay-20Kundu-Downloads-Co.png
166
- - assets/img/projects/screenshotmy.png
167
- - assets/img/projects/snap2.jpg
168
- - assets/img/projects/snap3.jpg
169
- - assets/img/styleguide.png
170
- - assets/img/work/google.png
171
- - assets/img/work/microsoft.png
172
- - assets/img/work/skillenza.png
173
- - assets/img/zoom.jpg
174
157
  homepage: https://github.com/sujaykundu777/devlopr-jekyll
175
158
  licenses:
176
159
  - MIT
@@ -191,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
191
174
  version: '0'
192
175
  requirements: []
193
176
  rubyforge_project:
194
- rubygems_version: 2.7.6.2
177
+ rubygems_version: 2.7.6
195
178
  signing_key:
196
179
  specification_version: 4
197
180
  summary: A Theme built for developers
@@ -1,16 +0,0 @@
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>
@@ -1,13 +0,0 @@
1
- <div class="share-page">
2
- Share this on &rarr;
3
- <a href="https://twitter.com/intent/tweet?text={{ page.title }}&url={{ site.url }}{{ page.url }}&via={{ site.twitter_username }}&related={{ site.twitter_username }}"
4
- rel="nofollow" target="_blank" title="Share on Twitter">
5
- <img alt="Twitter" src="https://simplesharebuttons.com/images/somacro/twitter.png" class="social-icon" />
6
- </a>
7
- <a href="https://facebook.com/sharer.php?u={{ site.url }}{{ page.url }}" rel="nofollow" target="_blank" title="Share on Facebook">
8
- <img alt="Facebook" src="https://simplesharebuttons.com/images/somacro/facebook.png" class="social-icon" />
9
- </a>
10
- <a href="https://plus.google.com/share?url={{ site.url }}{{ page.url }}" rel="nofollow" target="_blank" title="Share on Google+">
11
- <img alt="Google+" src="https://simplesharebuttons.com/images/somacro/google.png" class="social-icon" />
12
- </a>
13
- </div>