cybersynth-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 +20 -31
- data/_config.yml +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 518aaf9b5b57978694c60b63e7e43106445efef6bf4ff993d43ae8570a65ded0
|
|
4
|
+
data.tar.gz: 6512a371981f80e61de7557b47c14f8c41056eff916b372f22446eb67c3429dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6be12eb4f7dc26be4dba4243cddd00cb7237b32756ee7aba012d31e6c0f616a909879c6170f01c54f5f5588dfcdc48798fdbce964f2ce6f0af0e80ddb3fd0e55
|
|
7
|
+
data.tar.gz: 0d42f2270bbd8886e63f234020a641e097ad9f73e7318a7fdbeedd4709188c806bc4b8f8fa41850cf5d294382846b933011dbe9dd0d2cdcc4ac54e6b102be2ec
|
data/README.md
CHANGED
|
@@ -1,50 +1,39 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Cybersynth Jekyll Theme
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
|
6
|
-
|
|
7
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
Cybersynth is a cyberpunk Jekyll theme with header navigation for GitHub pages.
|
|
8
4
|
|
|
9
5
|
## Installation
|
|
10
6
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
```ruby
|
|
14
|
-
gem "cybersynth-theme"
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
And add this line to your Jekyll site's `_config.yml`:
|
|
7
|
+
It's simple to use the Cybersynth on your GitHub pages site:
|
|
18
8
|
|
|
9
|
+
1. Add the code bellow to your `_config.yml` file:
|
|
10
|
+
|
|
19
11
|
```yaml
|
|
20
|
-
|
|
12
|
+
remote_theme: ziinahzoor/cybersynth-theme@v0.1.0
|
|
13
|
+
plugins:
|
|
14
|
+
- jekyll-remote-theme
|
|
21
15
|
```
|
|
22
16
|
|
|
23
|
-
|
|
17
|
+
2. To preview it locally, add the following code to your `Gemfile`:
|
|
24
18
|
|
|
25
|
-
|
|
19
|
+
```ruby
|
|
20
|
+
gem "github-pages", group: :jekyll_plugins
|
|
21
|
+
```
|
|
26
22
|
|
|
27
|
-
|
|
23
|
+
3. And then execute:
|
|
28
24
|
|
|
29
|
-
|
|
25
|
+
```
|
|
26
|
+
$ bundle install
|
|
27
|
+
```
|
|
30
28
|
|
|
31
|
-
##
|
|
29
|
+
## Customizing
|
|
32
30
|
|
|
33
|
-
|
|
31
|
+
Just follow the [Jekyll documentation](https://jekyllrb.com/docs/themes/).
|
|
34
32
|
|
|
35
33
|
## Contributing
|
|
36
34
|
|
|
37
|
-
Bug reports
|
|
38
|
-
|
|
39
|
-
## Development
|
|
40
|
-
|
|
41
|
-
To set up your environment to develop this theme, run `bundle install`.
|
|
42
|
-
|
|
43
|
-
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
|
44
|
-
|
|
45
|
-
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
|
46
|
-
To add a custom directory to your theme-gem, please edit the regexp in `cybersynth-theme.gemspec` accordingly.
|
|
35
|
+
Bug reports are welcome on [Cybersynth's GitHub Repository](https://github.com/ziinahzoor/cybersynth-theme).
|
|
47
36
|
|
|
48
37
|
## License
|
|
49
38
|
|
|
50
|
-
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
39
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). Feel free to use it and customize it the way you like.
|
data/_config.yml
CHANGED