jekyll-theme-bluelib 0.1.0 → 0.1.1

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -0
  3. data/_layouts/default.html +8 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73609e4642f09a4b8e40b0974160916e4290d37dc92b4816f5c34286d53b478e
4
- data.tar.gz: 5f64ee36b69f10b9a0db572b5b9f0f59c27faed22f97f17e687de2e9bf2df74c
3
+ metadata.gz: e5e3549132a8b33bef012c23fa543a4de06ea8731c4a030b0a8a78b68a2cddae
4
+ data.tar.gz: 68b43f6da5006d61f5927b973634e10b35f14f253dff4347ffa814896c87632f
5
5
  SHA512:
6
- metadata.gz: 5f47a755e646785f6aa9c2d3553ca8b123b8ec247b36647cef931fc90eec5cc2fdfea3638d52d1820a347c080dc1caf08723b2657123f8534a27ec1b894a46d1
7
- data.tar.gz: 1b759b18e767a5312604e26f8f23dccb005bd02375e87386226f900231051582a5f8e7b63377c4f2d333e49857a72ed4b4a5c3c377fc48c258e4e04372414fb4
6
+ metadata.gz: fa33be875bbf7d95d6f7a8ceb761f6b7452fc5a0e8cebc0a49af1460cc9e3e80fed02dc8ce25b7f8c6790b639fbba9d12e2e16e0552741d2999b53fdb3f846a4
7
+ data.tar.gz: 764f0a603dd7cd266ffa74adaa170a653115f013c7aab5c7e71276b2486362848c760986f7aae6c84ef35c3506ae7e31f02b74fdd5cd982f9a3679139cd1fa93
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  A theme providing Bluelib themes on Jekyll static sites!
4
4
 
5
+ ![Screenshot](screenshot.png)
6
+
5
7
  ## Installation
6
8
 
7
9
  Add this line to your Jekyll site's `Gemfile`:
@@ -46,6 +48,7 @@ In particular, it `<link>`s in the following order:
46
48
  1. The `skeleton.root.css` from the latest version of bluelib
47
49
  2. The bluelib `root` target defined in the `bluelib` variable of `_config.yml` (`site.bluelib`)
48
50
  3. The bluelib `root` target defined in the `bluelib` variable of the Front Matter of the page (`page.bluelib`)
51
+ 4. The CSS files specified in the `extra_css` array of `_config.yml` (`site.extra_css`)
49
52
 
50
53
  ### `base`
51
54
 
@@ -1,8 +1,13 @@
1
1
  <html>
2
2
  <head>
3
- <link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/skeleton.root.css" type="text/css">
4
- <link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/{{site.bluelib}}.root.css" type="text/css">
5
- <link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/{{page.bluelib}}.root.css" type="text/css">
3
+ <meta charset="UTF-8"/>
4
+ <link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/skeleton.root.css" type="text/css"/>
5
+ <link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/{{ site.bluelib }}.root.css" type="text/css"/>
6
+ <link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/{{ page.bluelib }}.root.css" type="text/css"/>
7
+ {% for css in site.extra_css %}
8
+ <link rel="stylesheet" href="{{ css }}"/>
9
+ {% endfor %}
10
+ <title>{{ page.title }}</title>
6
11
  </head>
7
12
  <body>
8
13
  {{ content }}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-bluelib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefano Pigozzi