no-style-please2 0.7.4.3 → 0.7.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: 8cccb44a2e4a096a8fcbfc14d1f72ee0db470cee5570c497b1e09bed1812aef2
4
- data.tar.gz: 15d1376e87836af024cff8717c4b84b5b82f49fd7345e6f1e084b8497052bcb5
3
+ metadata.gz: d2474095f91956917b41fcc10d0147da50a80547ef3e4c87df38a35be68df4f3
4
+ data.tar.gz: d94c224978d92b368033cdd60433c54859ab9783831f2cc1f485a518c62a8b59
5
5
  SHA512:
6
- metadata.gz: c60132dcd7a827773cf9e57da364bd8ea4617a672a6deb36a42648660146d40300631a77186d35401f0fd08e2ceabba1405314333e24c93bf601c5441693b7cd
7
- data.tar.gz: 0bdef0e133ff634910d4ed342f7b34119b494beb193dedc55e8b66277ef37eecae283ecbff167e0c624aa273e8aab4eeb199700776c4e9d9b93f3d0d61767cce
6
+ metadata.gz: 8e3a656dd5634e6fdce8ba2eac363bc6121cf9c910de43ec5483e86b57f227f68aada871e3074f9826e7b3c3c16ce93a1ff87b7dfffd70879d82581d0c10b158
7
+ data.tar.gz: e5c2df4754b05e29386783db23592bc7211e91c69d54d969545244a27daf905e369d7aa960e242d9fb7a61ef33e8d33ce2f5ced53522f2396eaf1f840bad7244
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  <img src="https://raw.githubusercontent.com/riggraz/no-style-please/master/logo.png" width="64" align="left" />A (nearly) no-CSS, fast, minimalist [Jekyll](https://jekyllrb.com/) theme.
4
4
  Inspired by [elly's site](http://tilde.town/~elly/) [riggraz](https://riggraz.dev/)
5
5
 
6
- <h3 align="center"><a href="https://vitock.github.io/no-style-please-demo">Try the demo out!</a></h3>
6
+ <h3 align="center"><a href="https://vitock.github.io/no-style-please">Try the demo out!</a></h3>
7
7
 
8
8
  <img src="https://raw.githubusercontent.com/riggraz/no-style-please/master/_screenshots/featured-image.png" />
9
9
 
data/_config.yml CHANGED
@@ -2,10 +2,12 @@ title: no style, please! # name of the site
2
2
  author: vitock # name of site's author
3
3
  email: "" # email of site's author
4
4
  url: "" # root address of the site
5
- baseurl: "" # subpath of the site, e.g. "/blog" (leave it blank "" if you're site shouldn't use a subpath)
5
+ baseurl: "/no-style-please" # subpath of the site, e.g. "/blog" (leave it blank "" if you're site shouldn't use a subpath)
6
6
  description: > # description of the site (multiple lines allowed)
7
7
  A (nearly) no-CSS, fast, minimalist Jekyll theme.
8
8
 
9
+ destination: ./docs
10
+
9
11
 
10
12
  favicon: "logo.png" # name+extension of favicon (which must be put on the root folder)
11
13
  # goat_counter: "yoursitename" # put your GoatCounter name if you want to use GoatCounter analytics
data/_includes/main.css CHANGED
@@ -73,7 +73,7 @@ table, th, td {
73
73
 
74
74
  code {
75
75
  color: white;
76
- background: black; }
76
+ background: gray; }
77
77
 
78
78
  div.highlighter-rouge code {
79
79
  display: block;
@@ -14,22 +14,25 @@ layout: default
14
14
  {% capture archive_date_format %} {{ site.theme_config.archive_date_format | default: "%Y"}}{% endcapture %}
15
15
 
16
16
  {% capture archive_date_titleformat %} {{ site.theme_config.archive_title_date_format | default: "%m-%d"}}{% endcapture %}
17
+ <ul>
17
18
  {%- for post in posts limit: include.limit -%}
18
19
  {% capture ymCur %} {{post.date | date: archive_date_format}} {% endcapture %}
19
20
  {% if ymCur != ymPre %}
20
- <h3>{{ymCur}}</h3>
21
+ {% if ymPre != "" %}
22
+ </ul>
23
+ {% endif %}
24
+ <li><h2>{{ymCur}}</h2></li>
25
+ <ul>
21
26
  {% endif %}
22
27
  {% assign ymPre = ymCur %}
23
-
24
-
25
- <ul>
26
-
27
-
28
- <li>
28
+
29
+ <li>
29
30
  <span>{{- post.date | date: archive_date_titleformat }}</span>
30
31
  <a href="{{ post.url | relative_url }}">{{ post.title | downcase }}</a>
31
- </li>
32
-
33
- </ul>
32
+ </li>
33
+
34
34
  {%- endfor -%}
35
- {%- endif -%}
35
+ </ul>
36
+ {%- endif -%}
37
+
38
+
@@ -67,8 +67,8 @@ table, th, td {
67
67
  }
68
68
 
69
69
  code {
70
- color: white;
71
- background: black;
70
+ color: black;
71
+ background: gray;
72
72
  // border-radius: 2px;
73
73
  // padding-left: 2px;
74
74
  // padding-right: 2px;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: no-style-please2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.4.3
4
+ version: 0.7.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-06-01 00:00:00.000000000 Z
11
+ date: 2022-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll