sora-elegant-theme 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.
- checksums.yaml +4 -4
- data/README.md +14 -2
- data/_includes/head.html +1 -1
- data/_includes/header.html +1 -1
- data/_layouts/page.html +1 -1
- data/assets/css/style.css +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ed05eb371d4d2cc8078ad3f93f05f544045118c
|
|
4
|
+
data.tar.gz: c8446e7108007f09c4d2de505dc434ea23f12aba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '00806c7b102a144a369092e20edce4b904934d709909b8621702f52dccd8060cfdcbe35ddad552721d1af788d1bbb4e6aca01ddb9001d5c344e54fb6123c471e'
|
|
7
|
+
data.tar.gz: dca575081dae030df54746b13e66d9352dce47ca3bb7c48c5e7114e71cad6e378952884ba04625f7b3c33380ece7e75e3273b2157f1bd9e169f28c8434cfd6e6
|
data/README.md
CHANGED
|
@@ -28,11 +28,23 @@ Or install it yourself as:
|
|
|
28
28
|
|
|
29
29
|
## Usage
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
Add paginate Gem to your `Gemfile`:
|
|
32
|
+
```Ruby
|
|
33
|
+
gem "jekyll-paginate"
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
And add this line to your Jekyll site's `_config.yml`:
|
|
37
|
+
```yaml
|
|
38
|
+
plugins:
|
|
39
|
+
- jekyll-paginate
|
|
40
|
+
paginate: 20
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
There must be a index.html file on the root directory.
|
|
32
44
|
|
|
33
45
|
## Contributing
|
|
34
46
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
47
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/soragui/sora-jekyll-theme/issues. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
36
48
|
|
|
37
49
|
## Development
|
|
38
50
|
|
data/_includes/head.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
5
5
|
<meta name="description" content="soragui github page for programming thought">
|
|
6
|
-
<title>
|
|
6
|
+
<title>ELEGENT THEME</title>
|
|
7
7
|
|
|
8
8
|
<!-- Open Graph Meta -->
|
|
9
9
|
<meta content="{{ site.title }}" property="og:site_name">
|
data/_includes/header.html
CHANGED
data/_layouts/page.html
CHANGED
data/assets/css/style.css
CHANGED