summoner-jekyll-theme 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/alltags.html +1 -1
- data/_includes/date.html +2 -2
- data/_includes/listings.html +6 -6
- data/_includes/tags.html +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 938eb01e2ce4823ced505cc1effdf471a1cd56e465e6d6750703cc5b76f11964
|
4
|
+
data.tar.gz: 92353e2b31e8e3953096f39826e271bb98b760e55fca51467b7b61d94c7de547
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a8379f0128f722cb88b51167d85ffa4ff664fb0facc93f1f36eb29b1f5eac1fd576005916443ff445b749232d3a2c58bbad16ad3a4804cc6e0ba590d58737b9
|
7
|
+
data.tar.gz: a7e3c70ba7d94e6fc9d3f9f37160000b0dc94133d1cfdb847012aa8f03ad06c406bbea0d02d0035e1dfae6a7dba4cf875438e9a510ffcdd8ffe91b18aa5e0c97
|
data/_includes/alltags.html
CHANGED
data/_includes/date.html
CHANGED
data/_includes/listings.html
CHANGED
@@ -4,10 +4,10 @@
|
|
4
4
|
{% if paginator.posts %}
|
5
5
|
{% for post in paginator.posts %}
|
6
6
|
<div class="listing">
|
7
|
-
<h3><a href="{{post.url}}">{{post.title}}</a></h3>
|
7
|
+
<h3><a href="{{post.url}}">{{ post.title }}</a></h3>
|
8
8
|
{% include tags.html %}
|
9
9
|
{% include date.html %}
|
10
|
-
<!-- <p>{{post.excerpt | markdownify | truncatewords: 30}}</p> -->
|
10
|
+
<!-- <p>{{ post.excerpt | markdownify | truncatewords: 30 }}</p> -->
|
11
11
|
</div>
|
12
12
|
{% endfor %}
|
13
13
|
|
@@ -15,7 +15,7 @@
|
|
15
15
|
{% else %}
|
16
16
|
{% for post in site.posts %}
|
17
17
|
<div class="listing">
|
18
|
-
<h3><a href="{{post.url}}">{{post.title}}</a></h3>
|
18
|
+
<h3><a href="{{post.url}}">{{ post.title }}</a></h3>
|
19
19
|
{% include tags.html %}
|
20
20
|
{% include date.html %}
|
21
21
|
</div>
|
@@ -28,10 +28,10 @@
|
|
28
28
|
{% for post in paginator.posts %}
|
29
29
|
{% if post.tags contains archive %}
|
30
30
|
<div class="listing">
|
31
|
-
<h3><a href="{{post.url}}">{{post.title}}</a></h3>
|
31
|
+
<h3><a href="{{post.url}}">{{ post.title }}</a></h3>
|
32
32
|
{% include tags.html %}
|
33
33
|
{% include date.html %}
|
34
|
-
<!-- <p>{{post.excerpt | markdownify | truncatewords: 30}}</p> -->
|
34
|
+
<!-- <p>{{ post.excerpt | markdownify | truncatewords: 30 }}</p> -->
|
35
35
|
</div>
|
36
36
|
{% endif %}
|
37
37
|
{% endfor %}
|
@@ -41,7 +41,7 @@
|
|
41
41
|
{% for post in site.posts %}
|
42
42
|
{% if post.tags contains archive %}
|
43
43
|
<div class="listing">
|
44
|
-
<h3><a href="{{post.url}}">{{post.title}}</a></h3>
|
44
|
+
<h3><a href="{{post.url}}">{{ post.title }}</a></h3>
|
45
45
|
{% include tags.html %}
|
46
46
|
{% include date.html %}
|
47
47
|
</div>
|
data/_includes/tags.html
CHANGED
@@ -2,17 +2,17 @@
|
|
2
2
|
{% if post.tags %}
|
3
3
|
{% for tag in post.tags %}
|
4
4
|
{% if tag == post.tags.last %}
|
5
|
-
<a href="/archive/tag/{{tag}}">{{tag}}</a>
|
5
|
+
<a href="/archive/tag/{{ tag }}">{{ tag }}</a>
|
6
6
|
{% else %}
|
7
|
-
<a href="/archive/tag/{{tag}}">{{tag}}</a>,
|
7
|
+
<a href="/archive/tag/{{ tag }}">{{ tag }}</a>,
|
8
8
|
{% endif %}
|
9
9
|
{% endfor %}
|
10
10
|
{% else %}
|
11
11
|
{% for tag in page.tags %}
|
12
12
|
{% if tag == page.tags.last %}
|
13
|
-
<a href="/archive/tag/{{tag}}">{{tag}}</a>
|
13
|
+
<a href="/archive/tag/{{ tag }}">{{ tag }}</a>
|
14
14
|
{% else %}
|
15
|
-
<a href="/archive/tag/{{tag}}">{{tag}}</a>,
|
15
|
+
<a href="/archive/tag/{{ tag }}">{{ tag }}</a>,
|
16
16
|
{% endif %}
|
17
17
|
{% endfor %}
|
18
18
|
{% endif %}
|