devlopr 0.1.9 → 0.2.0

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: 558f28725e5df20215efae006d31d23dd2c75c6b
4
- data.tar.gz: 9dd557dcbf351059f923dbe350eed71f3fb7f996
3
+ metadata.gz: ce530c662ff7a475e9b628e5f7713d6b22a75a08
4
+ data.tar.gz: a8070a03a6b78c47dd86755c5adb40ed40cb7fc3
5
5
  SHA512:
6
- metadata.gz: 308c5f1bb720fd71c06a9da10183d1406b2470ff3811c99c26880d4c1b68e16e0fa09c715964a2fd85f644cf1008af7610eb607696e07478ac1341c1f9dc3faa
7
- data.tar.gz: 73260f46500b0e91d8b4e741e3a8cbd61eedcb6390339aa8e0ef0ebdc27051ff9aaf7a0fbbd8179937185ad645f9ea6bd006ddaaaa1b448087716c578ecb85fe
6
+ metadata.gz: 3ed33441feea34ca41e2ad464f19acccffeffb2fe289e5ae2003918b86683925e4072a8c017444c7fb82a353019bf55a39d72a72d6b40ee6b7771921a4d352d7
7
+ data.tar.gz: e568dceb3c1136a6ea5ef8a2ec729638567f775b745faf9e5ffe193aba9f7cda41423f3fd252844327ef9a9a98ea4a174d8e597b3b8f736575c86c84e6ecae27
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # devlopr
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/devlopr.svg)](https://badge.fury.io/rb/devlopr)
4
+
3
5
  Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
6
 
5
7
  To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
@@ -66,5 +68,6 @@ Create a new file blog.md file with following content
66
68
  ```
67
69
  ---
68
70
  layout: blog
69
- title: Blog
71
+ title: Blog
72
+ permalink: \blog\
70
73
  ```
data/_layouts/blog.html CHANGED
@@ -1,8 +1,8 @@
1
1
  ---
2
- layout: default
2
+ layout: default
3
3
  ---
4
4
 
5
- <div class="row">
5
+ <div class="row">
6
6
 
7
7
  <div class="col-lg-8">
8
8
  <ul>
@@ -10,7 +10,7 @@ layout: default
10
10
  <div class="card blog-post">
11
11
  <img class="card-img-top" src="{{site.url}}/assets/img/{{ post.thumbnail }}" alt="{{ post.title }}">
12
12
  <div class="card-body center">
13
- <img src="{{site.url}}/assets/img/{{ author_logo }}" class="author-profile-img">
13
+ <img src="{{site.url}}/assets/img/{{ site.author_logo }}" class="author-profile-img">
14
14
  <h4 class="card-title">{{ post.title }}</h4>
15
15
 
16
16
  <h6 class="card-subtitle mb-2 text-muted">{{ post.date | date: "%b %-d, %Y" }}</h6>
data/_layouts/post.html CHANGED
@@ -25,7 +25,7 @@ layout: default
25
25
  <!-- <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1> -->
26
26
  <h4 class="post-meta">{{ page.summary }}</h4>
27
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">
28
+ <img src="{{site.url}}/assets/img/{{ site.author_logo }}" class="author-profile-img">
29
29
  <span itemprop="author" itemscope itemtype="http://schema.org/Person">
30
30
  <span itemprop="name">{{ page.author }}</span>
31
31
  </span>{% endif %} at
@@ -46,7 +46,7 @@ layout: default
46
46
  </div>
47
47
 
48
48
  <div class="card-body" itemprop="articleBody">
49
- {{ content }} {%- include share.html -%}
49
+ <img class="card-img-top" src="{{site.url}}/assets/img/{{ post.thumbnail }}" alt="{{ post.title }}"> {{ content }} {%- include share.html -%}
50
50
  </div>
51
51
 
52
52
  <div id="disqus_thread"></div>
@@ -97,22 +97,22 @@ layout: default
97
97
  <!-- End of Sidebar -->
98
98
 
99
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
- })();
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
115
  </script>
116
116
  <noscript>Please enable JavaScript to view the
117
- <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
118
- </noscript>
117
+ <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
118
+ </noscript>
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.1.9
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sujay Kundu