devlopr 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ce530c662ff7a475e9b628e5f7713d6b22a75a08
4
- data.tar.gz: a8070a03a6b78c47dd86755c5adb40ed40cb7fc3
3
+ metadata.gz: 516957502cc462b6286f5f1ef3da3a3915b19614
4
+ data.tar.gz: 8a0d5874d12f7ece03f598246411d9390e5742f1
5
5
  SHA512:
6
- metadata.gz: 3ed33441feea34ca41e2ad464f19acccffeffb2fe289e5ae2003918b86683925e4072a8c017444c7fb82a353019bf55a39d72a72d6b40ee6b7771921a4d352d7
7
- data.tar.gz: e568dceb3c1136a6ea5ef8a2ec729638567f775b745faf9e5ffe193aba9f7cda41423f3fd252844327ef9a9a98ea4a174d8e597b3b8f736575c86c84e6ecae27
6
+ metadata.gz: f7f1fda5f9ac82d9249232158a9e79f697694935aa500f5a5a01e89de953b138f5487c2bde0b93081af3eade73e2e5e461961e4dd458f0b0e286baf39e2edcf3
7
+ data.tar.gz: d302ed777f1b652d456ae6d4d45d19399769a58928249b51286d3c6dc9b272657bbea0b9070cb66ba9bf68e9c50208ebb9900ec703cf4009ec36f294fb064592
data/README.md CHANGED
@@ -56,18 +56,115 @@ The theme is available as open source under the terms of the [MIT License](https
56
56
 
57
57
  `{{site.variable}}`
58
58
 
59
- title, description, name , bio
59
+ # _config.yml configuration ( Copy and Edit accordingly )
60
60
 
61
- twitter_username, facebook_username, medium_username , telegram_username, behance_username, github_username ,
62
- instagram_username
61
+ ```
62
+ title: Your Site Title
63
+ subtitle: Your Site Subtitle
64
+ description: >- # this means to ignore newlines until "baseurl:"
65
+ Write an awesome description for your new site here. You can edit this
66
+ line in _config.yml. It will appear in your document head meta (for
67
+ Google search results) and in your feed.xml site description.
68
+ baseurl: "" # the subpath of your site, e.g. /blog
69
+ url: "" # the base hostname & protocol for your site, e.g. http://example.com
70
+
71
+ author_logo: profile.png
72
+ disqus_shortname: sujay-kundu #for comments using disqus
73
+ author: Your Name
74
+ author_bio: Something About You for about me
75
+ author_email: "your-email@example.com"
76
+ author_location: Your Location
77
+ author_website_url: "https://yourwebsite.com"
78
+
79
+ # social links
80
+ twitter_username: yourusername
81
+ github_username: yourusername
82
+ facebook_username: yourusername
83
+ linkedin_username: yourusername
84
+ behance_username: yourusername
85
+ instagram_username: yourusername
86
+ medium_username: yourusername
87
+ telegram_username: yourusername
88
+ dribbble_username: yourusername
89
+ flickr_username: yourusername
90
+ ```
63
91
 
64
92
  # Add blog section
65
93
 
66
- Create a new file blog.md file with following content
94
+ Create a new file blog.md file with following front yaml inside it.
67
95
 
68
96
  ```
69
97
  ---
70
98
  layout: blog
71
99
  title: Blog
72
- permalink: \blog\
73
- ```
100
+ permalink: \blog\
101
+ ---
102
+ ```
103
+
104
+ # Post Yaml Format ( Example Below ) :
105
+
106
+ ```
107
+ ---
108
+ layout: post
109
+ title: How to use docker compose
110
+ categories:
111
+ - web-development
112
+ - docker
113
+ summary: Learn how to use docker compose
114
+ thumbnail: docker-compose.png
115
+ author: Sujay Kundu
116
+ ---
117
+ ```
118
+
119
+ # Adding Categories
120
+
121
+ For Adding Categories create new folder categories and inside that create a file `all.md` and copy the below code in that :
122
+
123
+ ```
124
+ ---
125
+ layout: page
126
+ permalink: /blog/categories/
127
+ ---
128
+
129
+ <div id="categories">
130
+ {% for tag in site.categories %}
131
+ <div class="category-box" >
132
+ {% capture tag_name %}{{ tag | first }}{% endcapture %}
133
+ <div id="#{{ tag_name | slugize }}"></div>
134
+ <h4 class="tag-head"><a href="{{ site.baseurl }}/blog/categories/{{ tag_name }}">{{ tag_name }}</a></h4>
135
+ <a name="{{ tag_name | slugize }}"></a>
136
+ {% for post in site.tags[tag_name] %}
137
+ <article class="center">
138
+ <h6 ><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></h6>
139
+ </article>
140
+
141
+
142
+ {% endfor %}
143
+
144
+ </div>
145
+ {% endfor %}
146
+ </div>
147
+
148
+ ```
149
+
150
+ # Individual Categories
151
+
152
+ If you want to show all posts of a particular category, create a new file for that category inside categories folder
153
+
154
+ For example ( angularjs.md )
155
+
156
+ ```
157
+ ---
158
+ layout: page
159
+ permalink: /blog/categories/angularjs
160
+ ---
161
+
162
+ <div class="card">
163
+ {% for post in site.categories.angularjs %}
164
+ <li class="category-posts"><span>{{ post.date | date_to_string }}</span> &nbsp; <a href="{{ post.url }}">{{ post.title }}</a></li>
165
+ {% endfor %}
166
+ </div>
167
+
168
+
169
+ ```
170
+
data/_layouts/post.html CHANGED
@@ -3,15 +3,15 @@ layout: default
3
3
  ---
4
4
 
5
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>
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
15
  </nav>
16
16
 
17
17
  <div class="row">
@@ -46,7 +46,7 @@ layout: default
46
46
  </div>
47
47
 
48
48
  <div class="card-body" itemprop="articleBody">
49
- <img class="card-img-top" src="{{site.url}}/assets/img/{{ post.thumbnail }}" alt="{{ post.title }}"> {{ content }} {%- include share.html -%}
49
+ <img class="card-img-top" src="{{site.url}}/assets/img/{{ page.thumbnail }}" alt="{{ post.title }}"> {{ content }} {%- include share.html -%}
50
50
  </div>
51
51
 
52
52
  <div id="disqus_thread"></div>
@@ -75,44 +75,28 @@ layout: default
75
75
  </div>
76
76
  <div class="card">
77
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">
91
- </div>
92
- </div>
93
- </form>
94
- </div>
78
+ {%- include newsletter.html -%}
95
79
  </div>
96
80
  </div>
97
81
  <!-- End of Sidebar -->
98
82
 
99
- </div>
100
-
101
- <script>
102
- var disqus_config = function () {
103
- this.page.url = "{{ site.url }}{{ 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://{{ site.disqus_shortname }}.disqus.com/embed.js';
112
- s.setAttribute('data-timestamp', +new Date());
113
- (d.head || d.body).appendChild(s);
114
- })();
115
- </script>
116
- <noscript>Please enable JavaScript to view the
117
- <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
118
- </noscript>
83
+ </div>
84
+
85
+ <script>
86
+ var disqus_config = function () {
87
+ this.page.url = "{{ site.url }}{{ page.url }}"; // Replace PAGE_URL with your page's canonical URL variable
88
+ this.page.identifier = "{{ page.id }}"; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
89
+ };
90
+
91
+
92
+ (function () { // DON'T EDIT BELOW THIS LINE
93
+ var d = document,
94
+ s = d.createElement('script');
95
+ s.src = 'https://{{ site.disqus_shortname }}.disqus.com/embed.js';
96
+ s.setAttribute('data-timestamp', +new Date());
97
+ (d.head || d.body).appendChild(s);
98
+ })();
99
+ </script>
100
+ <noscript>Please enable JavaScript to view the
101
+ <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
102
+ </noscript>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devlopr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sujay Kundu
@@ -74,7 +74,35 @@ files:
74
74
  - _layouts/post.html
75
75
  - _sass/devlog.scss
76
76
  - assets/css/main.scss
77
+ - assets/img/android-chrome-192x192.png
78
+ - assets/img/android-chrome-512x512.png
79
+ - assets/img/apple-touch-icon.png
80
+ - assets/img/favicon-16x16.png
81
+ - assets/img/favicon-32x32.png
82
+ - assets/img/favicon.ico
83
+ - assets/img/gitflow-workflow.png
84
+ - assets/img/mstile-150x150.png
77
85
  - assets/img/profile.png
86
+ - assets/img/projects/CBSHOYEUkAAxfSm.png_large
87
+ - assets/img/projects/Music.png
88
+ - assets/img/projects/alex.png
89
+ - assets/img/projects/amigosevents.png
90
+ - assets/img/projects/blogmapia.png
91
+ - assets/img/projects/devlopr.png
92
+ - assets/img/projects/foobar-1.png
93
+ - assets/img/projects/foobar.png
94
+ - assets/img/projects/frutzi.png
95
+ - assets/img/projects/gamershub.png
96
+ - assets/img/projects/hackify.png
97
+ - assets/img/projects/klj.png
98
+ - assets/img/projects/musifier.png
99
+ - assets/img/projects/peb.png
100
+ - assets/img/projects/programmingebooks_frnt.png
101
+ - assets/img/projects/react-router.png
102
+ - assets/img/projects/screencapture-file-C-Users-Sujay-20Kundu-Downloads-Co.png
103
+ - assets/img/projects/screenshotmy.png
104
+ - assets/img/projects/snap2.jpg
105
+ - assets/img/projects/snap3.jpg
78
106
  - blog.md
79
107
  - contact.md
80
108
  homepage: https://www.sujaykundu.com