jekyll-simple-dark 0.2.0 → 0.2.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.
- checksums.yaml +4 -4
- data/README.md +10 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e736892b8102479cda7a5ef87d28dc70a260568bc0db04e140f154e1434ab671
|
4
|
+
data.tar.gz: 24c2a867df9ea67cac11d95222d8827da1bd74a33d379d93230247d708d30d39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee54adc1adf11a5709e688645889b759855c55e88d0ca1b41c8dbdf6d5dfa8356aeb844aba2da9a6da7201b6a0fb61ac231e47c11b13c21cb3a38fafe4446c68
|
7
|
+
data.tar.gz: 353bf2d58607b5e93ce272e01681aff0c9beaf529c64c9b7c76722eb96e2e31b00870d896c1af41786ef5f9ac81154ce80ddaf1db81a348e74ab8a46a468f94b
|
data/README.md
CHANGED
@@ -29,27 +29,32 @@ Browser compatibility:
|
|
29
29
|
|
30
30
|
## Installation
|
31
31
|
|
32
|
-
Add this
|
32
|
+
Add this lines to your Jekyll site's `Gemfile`:
|
33
33
|
|
34
34
|
```ruby
|
35
35
|
gem "jekyll-simple-dark"
|
36
|
+
gem "jekyll-paginator" # This line isn't necessary if you use github-pages
|
36
37
|
```
|
37
38
|
|
38
|
-
|
39
|
+
Add this lines to your Jekyll site's `_config.yml`:
|
39
40
|
|
40
41
|
```yaml
|
41
42
|
theme: jekyll-simple-dark
|
43
|
+
plugins:
|
44
|
+
- jekyll-paginate
|
45
|
+
paginate: 5 # Posts per page
|
46
|
+
paginate_path: "page:num/"
|
42
47
|
```
|
43
48
|
|
49
|
+
Rename **index.md** to **index.html** and change this line, `layout: home` to `layout: default`
|
50
|
+
|
44
51
|
And then execute:
|
45
52
|
|
46
53
|
$ bundle
|
47
54
|
|
48
55
|
Or install it yourself as:
|
49
56
|
|
50
|
-
$ gem install simple-dark
|
51
|
-
|
52
|
-
## Usage
|
57
|
+
$ gem install jekyll-simple-dark
|
53
58
|
|
54
59
|
### Social links:
|
55
60
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-simple-dark
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alfonso Saavedra 'Son Link'
|
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
90
|
version: '0'
|
91
91
|
requirements: []
|
92
92
|
rubyforge_project:
|
93
|
-
rubygems_version: 2.7.
|
93
|
+
rubygems_version: 2.7.3
|
94
94
|
signing_key:
|
95
95
|
specification_version: 4
|
96
96
|
summary: Simple dark theme for Jekyll using Colors palette. http://clrs.cc/
|