jekyll-theme-schatten 1.1.3 → 1.1.4
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.
- checksums.yaml +4 -4
- data/_includes/head.html +4 -9
- data/_includes/post-preview.html +2 -2
- data/_includes/related-posts.html +4 -6
- data/_layouts/tag-archive.html +1 -1
- metadata +30 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e39827e2cf5acf97bf95f41b4d57a82bef46bf89c64ade95cd792e2223dd6ef0
|
|
4
|
+
data.tar.gz: d0a28228297bf4f902043b8e82c8f5ccf44666b0dd4703acfd16951749887424
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1088508ef10cf44c5d41ec6b5f5aa6adcce4c5d3126f778913fc18e430b3d2c7751e8ab1844cbf2180c961856616647f65d26b948865476d533c42790bf52d6b
|
|
7
|
+
data.tar.gz: 4ff6f3069b97dde6c5cb927febe502cb948aac7a45e92cced2bf7f26d75f7cc3cf47c9c2143dddecca5c4c6a334a129115dea0a3be2d9bd99150e6329d50b003
|
data/_includes/head.html
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
<head>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
{{ page.title }} | {{ site.title }}
|
|
7
|
-
{% endif %}
|
|
8
|
-
</title>
|
|
2
|
+
<!-- No title tag required as generated by SEO plugin -->
|
|
3
|
+
<!-- Use Jekyll SEO plugin -->
|
|
4
|
+
{% seo %}
|
|
5
|
+
<meta http-equiv='content-language' content='en-gb'>
|
|
9
6
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
10
7
|
<meta charset="utf-8">
|
|
11
8
|
<link rel="stylesheet" href="{{ site.github.url }}/assets/css/main.css">
|
|
@@ -26,6 +23,4 @@
|
|
|
26
23
|
<link href="https://fonts.googleapis.com/css2?family=Fira+Mono&family=Joan&family=Pathway+Extreme:opsz@8..144&display=swap" rel="stylesheet">
|
|
27
24
|
<!-- Google Analytics -->
|
|
28
25
|
{% include google-analytics.html %}
|
|
29
|
-
<!-- Use Jekyll SEO plugin -->
|
|
30
|
-
{% seo %}
|
|
31
26
|
</head>
|
data/_includes/post-preview.html
CHANGED
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
{% if post.image %}
|
|
16
16
|
<div class="post-image-preview">
|
|
17
17
|
{% if post.image contains 'http' %}
|
|
18
|
-
<a href="{{ site.github.url }}{{ post.url }}"><img src="{{ post.image }}" alt="{{ post.
|
|
18
|
+
<a href="{{ site.github.url }}{{ post.url }}"><img src="{{ post.image }}" alt="{{ post.image_description }}"></a>
|
|
19
19
|
{% else %}
|
|
20
|
-
<a href="{{ site.github.url }}{{ post.url }}"><img src="{{ site.github.url }}/{{ post.image }}" alt="{{ post.
|
|
20
|
+
<a href="{{ site.github.url }}{{ post.url }}"><img src="{{ site.github.url }}/{{ post.image }}" alt="{{ post.image_description }}"></a>
|
|
21
21
|
{% endif %}
|
|
22
22
|
|
|
23
23
|
</div>
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
<div class="related">
|
|
2
2
|
<h2>Related Posts</h2>
|
|
3
|
-
{% assign related_posts = site.posts |
|
|
3
|
+
{% assign related_posts = site.posts | where_exp: "post", "post.tags contains page.tags.first" %}
|
|
4
|
+
{% assign related_posts = related_posts | where_exp: "post", "post.title != page.title" %}
|
|
4
5
|
{% if related_posts.size == 0 %}
|
|
5
|
-
{% assign related_posts = site.posts |
|
|
6
|
+
{% assign related_posts = site.posts | sort: 'date' | reverse | limit: 2 %}
|
|
6
7
|
{% endif %}
|
|
7
|
-
{%
|
|
8
|
-
{% assign related_posts = site.posts | sort: 'date' | reverse | limit: 3 %}
|
|
9
|
-
{% endif %}
|
|
10
|
-
{% for post in related_posts limit:3 %}
|
|
8
|
+
{% for post in related_posts limit:2 %}
|
|
11
9
|
{% include post-preview.html %}
|
|
12
10
|
{% endfor %}
|
|
13
11
|
</div>
|
data/_layouts/tag-archive.html
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-schatten
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fabian Stadler
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-09-
|
|
11
|
+
date: 2023-09-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -94,6 +94,20 @@ dependencies:
|
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: 2.2.1
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: jekyll-loading-lazy
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: 0.1.1
|
|
104
|
+
type: :runtime
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: 0.1.1
|
|
97
111
|
- !ruby/object:Gem::Dependency
|
|
98
112
|
name: kramdown-parser-gfm
|
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -108,6 +122,20 @@ dependencies:
|
|
|
108
122
|
- - "~>"
|
|
109
123
|
- !ruby/object:Gem::Version
|
|
110
124
|
version: 1.1.0
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: jekyll-scholar
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - "~>"
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: 7.1.3
|
|
132
|
+
type: :runtime
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - "~>"
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: 7.1.3
|
|
111
139
|
description:
|
|
112
140
|
email:
|
|
113
141
|
- mail@fabianstadler.com
|