jekyll-theme-schatten 1.0.0 → 1.1.1

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: 14865e03608825e8d372d90d9a383d62920e171d9ce4162e81e625264edcb4e7
4
- data.tar.gz: 102dd085eb21c52ecef5cc26acae074da5b50d59f21951867caa8a93a210fa24
3
+ metadata.gz: 91dffa2441437e3f2a8542ad37d8f2e903b9e66a73792b509d203488213e5bf0
4
+ data.tar.gz: e16dad9a7ea4396e9a882dfa499aab518f643ec4559e15d7e6cf3708bc287aa7
5
5
  SHA512:
6
- metadata.gz: 9e40ce99c00771a9c8d78eabe0d901dfe05c2a9cd5c4f30016d2b6c203a92c74932cf0ac6fd7dda474149dbdd3e2f615ea240fe463476fef5ea2f5292d7ca0af
7
- data.tar.gz: 55e53951ffbe4f8092d8b9018eec4180de439aa04689a2ebe56e0f6b9c734c7f798f906fd28a44fc911ff1bce586fba9d7179c06a7b30676102646dd7f1e38f1
6
+ metadata.gz: 25d03d9f620af5f2cf45f02b5966b9a7bcc45a0cff03b8744bdc8e32698ecd75f30ea3dead3c31f940b970bd0bed2be45193569dcd05f884e720f51d458255bb
7
+ data.tar.gz: b8b69c0ac1b2a9c8acced949743098f23e00b3cdeefab5df40ca44f21dfa7855b39e93389ba4ce2d032426e0777a76bc5444dd6f51e73c3969c157c3b5a93f40
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Schatten
1
+ # jekyll-theme-schatten
2
2
 
3
3
  Schatten is a modern Jekyll theme for blogs or personal websites. See the [demo](https://schatten-ioch6.ondigitalocean.app/) for a live example.
4
4
 
@@ -1,13 +1,13 @@
1
1
  <footer class="footer">
2
2
  <div class="footer-description">
3
- <a href="{{ site.github.url }}/">{{ site.data.settings.page-title }} | {{ site.data.settings.page-subtitle }} by {{site.author }}</a>
3
+ <a href="{{ site.github.url }}/">{{ site.title }} | {{ site.description }} by {{site.author }}</a>
4
4
  <br>
5
- {% if site.data.settings.copyright %}
6
- &copy; {{ site.data.settings.copyright }} {{ site.author }}
5
+ {% if site.copyright %}
6
+ &copy; {{ site.copyright }} {{ site.author }}
7
7
  {% endif %}
8
8
  <br>
9
- {% if site.data.settings.license %}
10
- All content<a href="{{ site.data.settings.license-link }}">{{ site.data.settings.license }}</a>
9
+ {% if site.license %}
10
+ All content<a href="{{ site.license-link }}">{{ site.license }}</a>
11
11
  {% endif %}
12
12
  </div>
13
13
  <script>
@@ -3,6 +3,6 @@
3
3
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
4
4
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
5
5
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
6
- ga('create', '{{ site.data.settings.google-ID }}', 'auto');
6
+ ga('create', '{{ site.google-ID }}', 'auto');
7
7
  ga('send', 'pageview');
8
8
  </script>
data/_includes/head.html CHANGED
@@ -1,9 +1,9 @@
1
1
  <head>
2
2
  <title>
3
3
  {% if page.title == "Home" %}
4
- {{ site.data.settings.page-title }} | {{ site.data.settings.page-subtitle }}
4
+ {{ site.title }} | {{ site.description }}
5
5
  {% else %}
6
- {{ page.title }} | {{ site.data.settings.page-title }}
6
+ {{ page.title }} | {{ site.title }}
7
7
  {% endif %}
8
8
  </title>
9
9
  <meta name="viewport" content="width=device-width, initial-scale=1">
@@ -1,6 +1,6 @@
1
1
  <header class="header">
2
2
  <h3 class="header-title">
3
- <a href="{{ site.github.url }}/">{{ site.data.settings.page-title }}</a>
4
- <small class="header-subtitle">{{ site.data.settings.page-subtitle }}</small>
3
+ <a href="{{ site.github.url }}/">{{ site.title }}</a>
4
+ <small class="header-subtitle">{{ site.description }}</small>
5
5
  </h3>
6
6
  </header>
@@ -2,7 +2,7 @@
2
2
  <a href="{{ site.github.url }}/">
3
3
  <icon class="fa fa-home"></icon>
4
4
  </a>
5
- {% for item in site.data.settings.pages %}
5
+ {% for item in site.navbar-pages %}
6
6
  <a href="{{ site.github.url }}{{ item.link }}">
7
7
  {{ item.name }}
8
8
  </a>
@@ -14,7 +14,7 @@
14
14
  </div>
15
15
  {% if post.image %}
16
16
  <div class="post-image-preview">
17
- <a href="{{ site.github.url }}{{ post.url }}"><img src="{{ post.image }}" alt="{{ post.title }}"></a>
17
+ <a href="{{ site.github.url }}{{ post.url }}"><img src="{{ site.github.url }}/{{ post.image }}" alt="{{ post.title }}"></a>
18
18
  </div>
19
19
  {% endif %}
20
20
  </article>
@@ -1,5 +1,5 @@
1
1
  <nav class="social-icons">
2
- {% for item in site.data.settings.social %}
2
+ {% for item in site.social %}
3
3
  {% assign first_char = item.link | slice: 0 %}
4
4
  {% if item.icon == 'mastodon' %}
5
5
  <a class="icon" rel="me" href="{{ item.link }}" target="_blank"><i class="fa-brands fa-{{ item.icon }}" aria-hidden="true"></i></a>
data/_sass/_base.scss CHANGED
@@ -65,9 +65,9 @@ h6 {
65
65
  }
66
66
 
67
67
  p {
68
- font-size: 16px;
68
+ font-size: 18px;
69
69
  margin-block-start: 0em;
70
- margin-block-end: 0em;
70
+ margin-block-end: 1em;
71
71
  margin-inline-start: 0px;
72
72
  margin-inline-end: 0px;
73
73
  text-align: justify;
data/_sass/_post.scss CHANGED
@@ -32,6 +32,12 @@
32
32
  max-height: 300px;
33
33
  }
34
34
 
35
+ .post-content img {
36
+ margin-left: auto;
37
+ margin-right: auto;
38
+ max-height: 300px;
39
+ }
40
+
35
41
  .post-image-subtitle {
36
42
  display: block;
37
43
  text-align: right;
@@ -75,7 +81,7 @@
75
81
 
76
82
  p {
77
83
  text-align: justify;
78
- font-size: 16px;
84
+ font-size: 18px;
79
85
  }
80
86
  }
81
87
 
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.0.0
4
+ version: 1.1.1
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-08-27 00:00:00.000000000 Z
11
+ date: 2023-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll