panthera-jekyll 1.3.5 → 1.3.6

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
  SHA256:
3
- metadata.gz: 538a7ac4974e4a5a36af8224e3e630ecd5234893e1e602591aa72fa9ecda5d10
4
- data.tar.gz: e50a221c57a48ea144b9be4fbfa1b86b819999b1a5583f9e90c8ec5daa0aa1f7
3
+ metadata.gz: 409d41d6f729bbb21ae74a35920a9e124a089e4185188ba2a5c1235f7d14cf63
4
+ data.tar.gz: 698fec45346aa6cdef845894bcd7ed02160798cec0d88ba07d09c728e5243cfa
5
5
  SHA512:
6
- metadata.gz: 14a6cc7a8b1b4e334e380f5b1971da40f27a9ec63942fd9e96ad69dc664b56ae7e00bd6a2c7a28c355d4e7b4ea6e8b02e10ddee7ec03faa006e89a12a9ca5b4a
7
- data.tar.gz: 44164cbe488db21797d8691482ae849e6d356ceb1e6b06dcc87151c1c3f29d4290abe1aa51cc0f88ea02e96244c08246d02bf6e8ff0b8e8f301f404212323f9f
6
+ metadata.gz: c719498cf61233da8ef4e555fee8ad6db596496e713bd8b34ffca4003444a1462e650e0464aaed43e135da693415db433ed606d1d6869b80d6327f45e2e04c45
7
+ data.tar.gz: 0e18d49554c275a210ed1202bedd8ef1501eb08e66fcdfbce59e3b193619f9844500c69da95d14d4cda732cdc24f018533a5ee8d68250f2b84e3e3e9e64c89b8
@@ -1,31 +1,2 @@
1
1
 
2
- <section class="pan-post-list">
3
- {% for post in site.posts %}
4
- <div class="pan-post-list__item">
5
- <div class="pan-post-list--left">
6
- <div class="pan-post-list--image">
7
- {% if post.image %}
8
- <a href="{{ post.url | relative_url }}" style="background-image: url({{ post.image | relative_url }});"></a>
9
- {% else %}
10
- <a href="{{ post.url | relative_url }}"></a>
11
- {% endif %}
12
- </div>
13
- </div>
14
- <div class="pan-post-list--right">
15
- <div class="pan-post-list--content">
16
- <div class="pan-post-list--body">
17
- <h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
18
- <p class="info">
19
- <span>{{ post.date | date: '%Y, %b %d' }}</span>
20
- &nbsp;&nbsp; - &nbsp;&nbsp;
21
- <span>{% capture words %}{{ post.content | number_of_words }}{% endcapture %}{% unless words contains "-" %}{{ words | plus: 250 | divided_by: 250 | append: " minute read" }}{% endunless %}</span>
22
- </p>
23
- <p class="desc">{{ post.content | strip_html | truncatewords: 20 }}</p>
24
- </div>
25
- </div>
26
- </div>
27
- </div>
28
- {% endfor %}
29
- </section>
30
-
31
- {% include pagination.html %}
2
+ {% include posts/index.html %}
@@ -0,0 +1,31 @@
1
+
2
+ <section class="pan-post-list">
3
+ {% for post in site.posts %}
4
+ <div class="pan-post-list__item">
5
+ <div class="pan-post-list--left">
6
+ <div class="pan-post-list--image">
7
+ {% if post.image %}
8
+ <a href="{{ post.url | relative_url }}" style="background-image: url({{ post.image | relative_url }});"></a>
9
+ {% else %}
10
+ <a href="{{ post.url | relative_url }}"></a>
11
+ {% endif %}
12
+ </div>
13
+ </div>
14
+ <div class="pan-post-list--right">
15
+ <div class="pan-post-list--content">
16
+ <div class="pan-post-list--body">
17
+ <h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
18
+ <p class="info">
19
+ <span>{{ post.date | date: '%Y, %b %d' }}</span>
20
+ &nbsp;&nbsp; - &nbsp;&nbsp;
21
+ <span>{% capture words %}{{ post.content | number_of_words }}{% endcapture %}{% unless words contains "-" %}{{ words | plus: 250 | divided_by: 250 | append: " minute read" }}{% endunless %}</span>
22
+ </p>
23
+ <p class="desc">{{ post.content | strip_html | truncatewords: 20 }}</p>
24
+ </div>
25
+ </div>
26
+ </div>
27
+ </div>
28
+ {% endfor %}
29
+ </section>
30
+
31
+ {% include pagination.html %}
@@ -72,7 +72,6 @@
72
72
  &--content {
73
73
  position: relative;
74
74
  top: var(--content-top) !important;
75
- transform: var(--content-transform) !important;
76
75
  background-color: #FFF;
77
76
  border-radius: var(--border-radius) !important;
78
77
  box-shadow: var(--content-shadow) !important;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: panthera-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.5
4
+ version: 1.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Ezeani
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-14 00:00:00.000000000 Z
11
+ date: 2020-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -80,6 +80,7 @@ files:
80
80
  - _includes/header.html
81
81
  - _includes/left.html
82
82
  - _includes/pagination.html
83
+ - _includes/posts/index.html
83
84
  - _layouts/default.html
84
85
  - _layouts/page.html
85
86
  - _layouts/post.html