jekyll-theme-bas-style-kit 0.3.0.pre.rc2 → 0.3.0.pre.rc3
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/CHANGELOG.md +1 -0
- data/README.md +12 -0
- 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: c34b2abacefcc6332d9176dbcc2e4a2c6f71269d8b823125b6f55a05dc80442b
|
|
4
|
+
data.tar.gz: baa2bc9c9208c5d117e1dad6bc0158bb48c63878d169d5ffa0f669187ae05a12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d47c7e2adbb23cb463767934bbac797f218bf9e4ade83a87e482d2f510519b7bd5a8ef593b5ba8dcf90545eb7240422a2860c8f45cf10efcafb347ed4f714e84
|
|
7
|
+
data.tar.gz: 79c212d7878930e053f9c1c3ecdeab6923364064f4e85fa04234e9204406b2d3fd0d936fd52ac317a55bdf1bef963e83395245c76ef04f2a30c4fee13d397471
|
data/CHANGELOG.md
CHANGED
|
@@ -23,6 +23,7 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
23
23
|
* 'back to top' and 'is something wrong' links - these will be re-added when supported in the Style Kit
|
|
24
24
|
* HTML5 shim and Respond.js as the Style Kit no longer supports IE 10 or below
|
|
25
25
|
* All local assets as they are either now part of the Style Kit, or will be re-added when supported in the Style Kit
|
|
26
|
+
* Canonical configuration options removed due to removal of canonical HTML meta tag
|
|
26
27
|
|
|
27
28
|
### Added
|
|
28
29
|
|
data/README.md
CHANGED
|
@@ -46,6 +46,18 @@ All layouts use the `.html` extension. I.e. the layout `blank` should be referen
|
|
|
46
46
|
All layouts are namespaced using a `bas-style-kit/` directory - i.e. the layout `blank.html` should be referenced as
|
|
47
47
|
`bas-style-kit/blank.html`.
|
|
48
48
|
|
|
49
|
+
To use a layout by default add the following to your `_config.yml`:
|
|
50
|
+
|
|
51
|
+
```yml
|
|
52
|
+
defaults:
|
|
53
|
+
-
|
|
54
|
+
scope:
|
|
55
|
+
# an empty string here means all files in the project
|
|
56
|
+
path: ""
|
|
57
|
+
values:
|
|
58
|
+
layout: "bas-style-kit/bsk--standard"
|
|
59
|
+
```
|
|
60
|
+
|
|
49
61
|
#### Generic layouts
|
|
50
62
|
|
|
51
63
|
* [`blank`](/docs/layout/blank.md)
|