jekyll-theme-clearloop 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 +42 -0
- data/_sass/clearloop.scss +1 -0
- data/_sass/syntax.scss +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06d0d935d3852b5c3dc39d83f8531e0809332eb3
|
4
|
+
data.tar.gz: 0f0e289bf0ea1f90f1240cb528877774c0b527c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da4c6cf725426dc8e7bb8e4e88a1ef0426b7041ad0c323d7396eb49690bb223e7dd92d90eb0f152f05aff2ce08450023f8d8dc1d56b46d87d52c8c55ff2ca6b3
|
7
|
+
data.tar.gz: 8b94f55a564f3726ec5abd35d59c75cb1eadb0ddb98486766d9819ca42898d3778093817078b26c8010424884b0ed95389aae93dc5ceb75d696274b8d9b3f375
|
data/README.md
CHANGED
@@ -31,6 +31,48 @@ Or install it yourself as:
|
|
31
31
|
|
32
32
|
## Usage
|
33
33
|
|
34
|
+
__Gemfile__:
|
35
|
+
```ruby
|
36
|
+
source "https://rubygems.org"
|
37
|
+
|
38
|
+
#Happy Clearlooping!
|
39
|
+
gem "jekyll", "~> 3.8"
|
40
|
+
|
41
|
+
#Plugins
|
42
|
+
group :jekyll_plugins do
|
43
|
+
gem "jekyll-seo-tag"
|
44
|
+
gem "rouge", "~> 3.3.0"
|
45
|
+
end
|
46
|
+
```
|
47
|
+
|
48
|
+
__\_config.yml__:
|
49
|
+
```ruby
|
50
|
+
# Welcome to Jekyll!
|
51
|
+
|
52
|
+
# Site settings
|
53
|
+
title: Your Website
|
54
|
+
email: Your Email
|
55
|
+
description: >-
|
56
|
+
Description here
|
57
|
+
|
58
|
+
# Build settings
|
59
|
+
markdown: kramdown
|
60
|
+
highlighter: rouge
|
61
|
+
nsass:
|
62
|
+
sass_dir: _sass
|
63
|
+
plugins:
|
64
|
+
- jekyll-seo-tag
|
65
|
+
|
66
|
+
# posts
|
67
|
+
format: "%b %-d, %Y"
|
68
|
+
collections_dir:
|
69
|
+
collections
|
70
|
+
|
71
|
+
pcollections:
|
72
|
+
categories:
|
73
|
+
output: true
|
74
|
+
```
|
75
|
+
|
34
76
|
Basic Category page at `collections/_categories` ;)
|
35
77
|
|
36
78
|
## Contributing
|
data/_sass/clearloop.scss
CHANGED
data/_sass/syntax.scss
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-clearloop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- clearloop
|
@@ -68,7 +68,7 @@ files:
|
|
68
68
|
- _sass/clearloop.scss
|
69
69
|
- _sass/syntax.scss
|
70
70
|
- assets/css/style.scss
|
71
|
-
homepage: https://clearloop.github.io/jekyll-theme
|
71
|
+
homepage: https://clearloop.github.io/jekyll-theme-clearloop
|
72
72
|
licenses:
|
73
73
|
- MIT
|
74
74
|
metadata: {}
|