jekyll-theme-isabelline 0.1.8 → 0.1.9
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 +1 -78
- data/_includes/footer.html +3 -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: 384750df35f4aa599dce13dd8f72ff20aa6f70b0f84cab40b718817e7bc0ddbb
|
4
|
+
data.tar.gz: 235e3d63f17706285be8c0509e0a81e321a793bc0f9dd7611949a59420b4a165
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfc052c5b99e31df2ff7721c46a31c7347fb69ba67d1bba964d9062cda2e487816762d5321c07967ab1fdf1093de52398d31d13bc800387d1a9ced19a6c92456
|
7
|
+
data.tar.gz: 44ae25c61b9bcfcdc7425c9dd0d4f19087785a377fb5050627385a5ca11df69649e8ceb6e05a1af295dd0b1fbb9ebae20acf1f6b63faf03d69c110545647a6b3
|
data/README.md
CHANGED
@@ -1,80 +1,3 @@
|
|
1
1
|
# jekyll-theme-isabelline
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
## Installation
|
6
|
-
|
7
|
-
Fundamentally setting up a jekyll website with a theme is a straightforward process.
|
8
|
-
|
9
|
-
1. Start with a website ([new](#how-to-create-new-jekyll-website) or existing).
|
10
|
-
|
11
|
-
2. Update Gemfile to reference the new theme and plugins it requires
|
12
|
-
|
13
|
-
3. (Optionally) Backup previous configs.
|
14
|
-
|
15
|
-
4. Copy `isabelline`'s starter `_config.yaml` and customize it to your liking.
|
16
|
-
|
17
|
-
5. Run bundle install.
|
18
|
-
|
19
|
-
## Docker based cookbook
|
20
|
-
|
21
|
-
### How to create a new jekyll website
|
22
|
-
|
23
|
-
```sh
|
24
|
-
$ docker run --rm -it -v "$PWD:/srv/jekyll" jekyll/jekyll:3.8 jekyll new .
|
25
|
-
```
|
26
|
-
|
27
|
-
### How to backup previous configs
|
28
|
-
|
29
|
-
`isabelline` needs the following files placed in the root directory of your jekyll website:
|
30
|
-
|
31
|
-
`index.html`
|
32
|
-
|
33
|
-
`_config.yaml`
|
34
|
-
|
35
|
-
`Gemfile`
|
36
|
-
|
37
|
-
`404.html`
|
38
|
-
|
39
|
-
`private.html`
|
40
|
-
|
41
|
-
`docker-compose.yaml`
|
42
|
-
|
43
|
-
These need to be copied manulaly.
|
44
|
-
|
45
|
-
|
46
|
-
### Basic customization
|
47
|
-
|
48
|
-
Simply follow instructions in `_config.yaml`.
|
49
|
-
|
50
|
-
|
51
|
-
### Run jekyll locally using docker
|
52
|
-
|
53
|
-
```sh
|
54
|
-
$ docker-compose up jekyll-serve
|
55
|
-
```
|
56
|
-
|
57
|
-
|
58
|
-
### Tweaking color scheme
|
59
|
-
|
60
|
-
`isabelline` is a pretty color but she likes to play. Copy `_config.scss` from the source and place it under `_sass/_config.scss`. Follow instructions in that file on how to adjust colors.
|
61
|
-
|
62
|
-
|
63
|
-
## Contributing
|
64
|
-
|
65
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/rzen/jekyll-theme-isabelline. 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.
|
66
|
-
|
67
|
-
|
68
|
-
## Development
|
69
|
-
|
70
|
-
To develop and test simply run from the root of a cloned `jekyll-theme-isabelline` project:
|
71
|
-
|
72
|
-
```sh
|
73
|
-
$ docker-compose up jekyll-serve
|
74
|
-
```
|
75
|
-
|
76
|
-
|
77
|
-
## License
|
78
|
-
|
79
|
-
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
80
|
-
|
3
|
+
README is being worked on in [a post](/README/)
|
data/_includes/footer.html
CHANGED
@@ -3,7 +3,9 @@
|
|
3
3
|
<p>
|
4
4
|
<span class="copy">©</span> {{ 'now' | date: '%Y' }} {{ site.copyright_owner.full_name }}.
|
5
5
|
<a href="{{ site.license.url | default: '/legal/' }}">{{ site.license.name }}</a>.
|
6
|
-
|
6
|
+
{% if site.edit_url != '' or site.edit_url != nil %}
|
7
|
+
<a class="edit" href="{{ site.edit_url | append: page.path }}">Edit</a>.
|
8
|
+
{% endif %}
|
7
9
|
</p>
|
8
10
|
</nav>
|
9
11
|
<nav>
|