jekyll-zeta 0.3.3 → 0.3.5

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: 21f3e98e673c84add05e83a379a5fa5cf6128fc3f9290d86c42357d33b651cba
4
- data.tar.gz: 04bc3e6c3140f0ed6f1be01c7659b1f382d2c928342c483c94eb61bbdf4123b9
3
+ metadata.gz: cc4c4d5bbb5eac3fdd80c9ad3e6cdb60ecb5b5a174f5a6224d05a902c44db169
4
+ data.tar.gz: 616c4965b227aa76d66bebc23fb0912ffefe5327226faeb9dbf319c2ccc5d789
5
5
  SHA512:
6
- metadata.gz: 5252b3b347a93a3df92dbc2c79da0ca6706cd1172f8b7e02d761c5c8b48707fb1661a37d044d59292e5d38527a55e3ff14ac5aa77c883d4ff57196d272f21192
7
- data.tar.gz: ff289017ab682c7f0cc58e499146ab00848ab3a979fd2b5f852a85fefc434822ce19d1c838491abed0c7a9c2841368d3fc17490b0babaa426eaf6789d17dba8e
6
+ metadata.gz: '0683dc7095d9859df4a686a5e8c9f13b8a4a1839dc7991b7556040c886f15fc9dd266ac03d84309a84223150ff070af49498371741f894f2e663db10399d7e02'
7
+ data.tar.gz: 25a31feba202d522bdc74d43253e35ea22b38c81d77bd8479d68278de5dfe884f2c2118f1e4a4862b27e8cdbf171017c075c37010da757dbe0b86d6940802fa9
data/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # jekyll-zeta
2
2
 
3
+ [demo page](https://vitock.github.io/jekyll-zeta/)
3
4
  ![](preview.png)
4
5
 
5
6
  ## Features
@@ -132,4 +133,4 @@ add a entry in the _data/menu.yml
132
133
  url: tags
133
134
  ```
134
135
 
135
-
136
+
data/_config.yml CHANGED
@@ -6,7 +6,8 @@ baseurl: "/jekyll-zeta" # subpath of the site, e.g. "/blog" (leave it blank "" i
6
6
  description: > # description of the site (multiple lines allowed)
7
7
  A (nearly) no-CSS, fast, minimalist Jekyll theme.
8
8
 
9
-
9
+ sass:
10
+ style: compressed
10
11
 
11
12
 
12
13
  favicon: "logo.png" # name+extension of favicon (which must be put on the root folder)
@@ -27,7 +27,7 @@
27
27
  {% assign ymPre = ymCur %}
28
28
 
29
29
  <li class="postlistli">
30
- <a href="{{ post.url | relative_url }}">{{ post.title | downcase }}</a>
30
+ <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
31
31
  <date datetime="{{post.date}}">{{- post.date | date: archive_date_titleformat }}</date>
32
32
  </li>
33
33
 
@@ -14,7 +14,7 @@
14
14
  <ul class="postlistul">
15
15
  {%- for post in posts limit: include.limit -%}
16
16
  <li class="postlistli">
17
- <a href="{{ post.url | relative_url }}">{{ post.title | downcase }}</a>
17
+ <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
18
18
  <date>{{- post.date | date: site.theme_config.date_format -}}</date>
19
19
  </li>
20
20
  {%- endfor -%}
data/_layouts/post.html CHANGED
@@ -2,8 +2,6 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
-
6
-
7
5
  <article>
8
6
  {% assign titlelen = page.title.size %}
9
7
  {% if titlelen > 0 %}
@@ -6,6 +6,7 @@ li {
6
6
  margin: auto;
7
7
  max-width: 640px;
8
8
  padding: 0.5rem;
9
+ word-wrap: break-word;
9
10
  }
10
11
 
11
12
  code.highlighter-rouge {
@@ -19,6 +20,7 @@ code.highlighter-rouge {
19
20
  code {
20
21
  color: #333;
21
22
  background: #F0f2f4;
23
+ max-height: 35rem;
22
24
  }
23
25
 
24
26
  div.highlighter-rouge code {
@@ -77,11 +79,11 @@ a {
77
79
  color: #0064c1;
78
80
  }
79
81
 
80
- h1>a {
82
+ .w > h1>a {
81
83
  color: #333;
82
84
  }
83
85
 
84
- h1>a:hover {
86
+ .w > h1>a:hover {
85
87
  color: #333;
86
88
  }
87
89
 
@@ -140,4 +142,5 @@ date {
140
142
 
141
143
  .largeli0 {
142
144
  padding: 0 0 0.5rem 0;
143
- }
145
+ }
146
+
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "jekyll-zeta";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-zeta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - vitock
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-22 00:00:00.000000000 Z
11
+ date: 2022-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -82,7 +82,8 @@ files:
82
82
  - _layouts/post.html
83
83
  - _layouts/tagpage.html
84
84
  - _layouts/tags.html
85
- - assets/css/main.css
85
+ - _sass/jekyll-zeta.scss
86
+ - assets/css/main.scss
86
87
  - assets/js/mouse_coords.js
87
88
  - index.html
88
89
  homepage: https://github.com/vitock/jekyll-zeta