klst-theme 0.1.10 → 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: 6572a56e6652bce31066247219e876e4758c3d0b37e26d309c1e0b8e6493e8a5
4
- data.tar.gz: 7c6c0d330b1e9784fbef7d9fcb93b8f7615b36074a434105498ab94256d34467
3
+ metadata.gz: 8984370f54d11bcd5b2ccf6fa7fcb0787a788c6b1c2fb2dc059db4cb4527a972
4
+ data.tar.gz: bc8f2fd7255fbad8b7a2289550e0ab7d533f479c0efa5e468f35a06476a6847f
5
5
  SHA512:
6
- metadata.gz: 2b1f1cc089af9c433bb4326ab392cffecb61f35c8e0659b3a0d486496b1158ac8cc388a1e5a60c3051174b996468da5d0d736e3de523c6c00121fda6e6325f4c
7
- data.tar.gz: 36b68db44ef4050ae7453938f4984982ab430577c7f6029a12a9c583f51c55b327efa4cdb0f280f86815530f5a3fd9ae9cf6928a68c3a8ae8b8f6fa6cd48adf3
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 %}
data/assets/css/ash.css CHANGED
@@ -3330,7 +3330,7 @@ dl dt {
3330
3330
  }
3331
3331
  ol,
3332
3332
  ul {
3333
- list-style: none;
3333
+ list-style: disc;
3334
3334
  }
3335
3335
  ol.-inline,
3336
3336
  ul.-inline {
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.10
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: []