klst-theme 0.1.11 → 0.1.12

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3c4a16771fc31c309531a2ed81a4ef49fd37b8641a43661f074493691384ff29
4
- data.tar.gz: 374be95adeaf108cd6cb16cd0296c34f003ccd962b038b3f1968376312875cc9
3
+ metadata.gz: 8984370f54d11bcd5b2ccf6fa7fcb0787a788c6b1c2fb2dc059db4cb4527a972
4
+ data.tar.gz: bc8f2fd7255fbad8b7a2289550e0ab7d533f479c0efa5e468f35a06476a6847f
5
5
  SHA512:
6
- metadata.gz: 12697310f968b7653da0456f52c769ac380c41ba35ef1422206e10c3387f997fcf6080c8c96c893ca8f3bddeff0dffcd1366ae4cb1a80743ba82a34ff7ffd776
7
- data.tar.gz: 2c9edcbc9ba4dea108d2ed69a28ca721af85345e99363676ca8026593b5534ca16669ea1141032c15748a1c4221ed6e96c8065da35b0ed11b8b9ea87997acda2
6
+ metadata.gz: 166ab1b78d4221ffa6affba94be7634181804fd4fd349e3b8427c1a0c625ed0c938fb4d7d7960e61fbc91ea89e7fb6fc93ab834dc97d2994b47314d219ac224e
7
+ data.tar.gz: 5c8f2c6e9cf494352ad0998da35087c269841fb6b1254f5993bbbf701ef43735911f26fd06512ebd8970bee441b53c7c8913c15631ea148b893608d63b98809d
data/_config.yml CHANGED
@@ -33,6 +33,7 @@ defaults:
33
33
  plugins:
34
34
  - jekyll-paginate
35
35
  - jekyll-archives
36
+ - jekyll-seo-tag
36
37
 
37
38
  paginate_path: "/posts/page:num/"
38
39
  paginate: 5
@@ -1,4 +1,3 @@
1
1
  navigation:
2
2
  - name: "Home"
3
- path: "/"
4
-
3
+ path: "/"
@@ -1,3 +1,3 @@
1
1
  styles:
2
2
  - name: "Custom CSS"
3
- path: "/assets/custom.css"
3
+ path: "/assets/custom.css"
data/_includes/head.html CHANGED
@@ -19,4 +19,5 @@
19
19
 
20
20
  <script src="{{site.baseurl}}/assets/css/highlight-default.min.css"></script>
21
21
  <script src="{{site.baseurl}}/assets/js/highlight.min.js"></script>
22
- <script>hljs.highlightAll();</script>
22
+ <script>hljs.highlightAll();</script>
23
+ {% seo %}
data/_includes/posts.html CHANGED
@@ -1,16 +1,17 @@
1
1
  <!-- This loops through the paginated posts -->
2
-
3
2
  {% for post in paginator.posts %}
4
3
  <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
5
4
  <p class="post-meta">
6
- {{% if post.author %}}
5
+ {% if post.author %}
7
6
  <span class="author">von {{ post.author }},</span>
8
- {{% endif %}}
7
+ {% endif %}
9
8
  <span class="date">{{ post.date | date: '%d.%m.%Y' }}</span>
10
9
  </p>
10
+ {% if post.description %}
11
11
  <div class="content">
12
- {{ post.content }}
12
+ {{ post.description }}
13
13
  </div>
14
+ {% endif %}
14
15
  {% endfor %}
15
16
 
16
17
  {% if paginator.total_pages > 1 %}
@@ -7,7 +7,7 @@
7
7
  <div class="content --padding-left-5">
8
8
  <div class="group">
9
9
  {% include postlist.html max_posts=5 %}
10
- <a href="/archive">...all posts</a>
10
+ <a href="/archive">...alle Posts</a>
11
11
  </div>
12
12
  </div>
13
13
  </details>
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  layout: page
3
3
  ---
4
-
5
4
  {% include month.html %}
@@ -1,5 +1,4 @@
1
1
  ---
2
2
  layout: page
3
3
  ---
4
-
5
4
  {% include year.html %}
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  layout: page
3
3
  ---
4
-
5
4
  {{content}}
6
5
 
7
6
  {% include years.html %}
data/_layouts/posts.html CHANGED
@@ -1,5 +1,4 @@
1
1
  ---
2
- title: Posts
3
2
  layout: page
4
3
  ---
5
4
  {% include posts.html %}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: klst-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - neko
@@ -51,6 +51,20 @@ dependencies:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
53
  version: '2.3'
54
+ - !ruby/object:Gem::Dependency
55
+ name: jekyll-seo-tag
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '2.8'
61
+ type: :runtime
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '2.8'
54
68
  email:
55
69
  - neko@koneko.at
56
70
  executables: []