jekyll-theme-cayman 0.0.4 → 0.1.0
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 +10 -0
- data/_layouts/default.html +3 -2
- data/_sass/variables.scss +14 -14
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5edd806137fedb1290e73855d2f592d349c6017
|
4
|
+
data.tar.gz: 6823ea4bfaca38f084b07971923cb728a28ffe43
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc56702302d37401c88a75c01e538759a32c6f72d7fc2b0b14f9de256a7eff4a2a712339cc67677ae49a25d241a0c4d23bc141be337852c17c2f048154f92068
|
7
|
+
data.tar.gz: eb7e8ba9c5268535e25bbe7c6c1b12df58b1fa3d2be3e0a5e9ac1ae64605f627d0c1febd73e64957115da670bbf61438a98eec10d044ceb454c7441d11bd4e25
|
data/README.md
CHANGED
@@ -65,6 +65,16 @@ If you'd like to change the theme's HTML layout:
|
|
65
65
|
3. Paste the default layout content copied in the first step
|
66
66
|
4. Customize the layout as you'd like
|
67
67
|
|
68
|
+
### Sass variables
|
69
|
+
|
70
|
+
If you'd like to change the theme's [Sass variables](https://github.com/pages-themes/cayman/blob/master/_sass/variables.scss), set new values before the `@import` line in your stylesheet:
|
71
|
+
|
72
|
+
```scss
|
73
|
+
$section-headings-color: #0086b3;
|
74
|
+
|
75
|
+
@import "{{ site.theme }}";
|
76
|
+
```
|
77
|
+
|
68
78
|
## Roadmap
|
69
79
|
|
70
80
|
See the [open issues](https://github.com/pages-themes/cayman/issues) for a list of proposed features (and known issues).
|
data/_layouts/default.html
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
|
-
<html lang="en-
|
2
|
+
<html lang="{{ site.lang | default: "en-US" }}">
|
3
3
|
<head>
|
4
4
|
<meta charset="UTF-8">
|
5
|
-
|
5
|
+
|
6
|
+
{% seo %}
|
6
7
|
<meta name="description" content="{{ page.description | default: site.description | default: site.github.project_tagline }}"/>
|
7
8
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
8
9
|
<meta name="theme-color" content="#157878">
|
data/_sass/variables.scss
CHANGED
@@ -1,23 +1,23 @@
|
|
1
1
|
// Breakpoints
|
2
|
-
$large-breakpoint: 64em;
|
3
|
-
$medium-breakpoint: 42em;
|
2
|
+
$large-breakpoint: 64em !default;
|
3
|
+
$medium-breakpoint: 42em !default;
|
4
4
|
|
5
5
|
// Headers
|
6
|
-
$header-heading-color: #fff;
|
7
|
-
$header-bg-color: #159957;
|
8
|
-
$header-bg-color-secondary: #155799;
|
6
|
+
$header-heading-color: #fff !default;
|
7
|
+
$header-bg-color: #159957 !default;
|
8
|
+
$header-bg-color-secondary: #155799 !default;
|
9
9
|
|
10
10
|
// Text
|
11
|
-
$section-headings-color: #159957;
|
12
|
-
$body-text-color: #606c71;
|
13
|
-
$body-link-color: #1e6bb8;
|
14
|
-
$blockquote-text-color: #819198;
|
11
|
+
$section-headings-color: #159957 !default;
|
12
|
+
$body-text-color: #606c71 !default;
|
13
|
+
$body-link-color: #1e6bb8 !default;
|
14
|
+
$blockquote-text-color: #819198 !default;
|
15
15
|
|
16
16
|
// Code
|
17
|
-
$code-bg-color: #f3f6fa;
|
18
|
-
$code-text-color: #567482;
|
17
|
+
$code-bg-color: #f3f6fa !default;
|
18
|
+
$code-text-color: #567482 !default;
|
19
19
|
|
20
20
|
// Borders
|
21
|
-
$border-color: #dce6f0;
|
22
|
-
$table-border-color: #e9ebec;
|
23
|
-
$hr-border-color: #eff0f1;
|
21
|
+
$border-color: #dce6f0 !default;
|
22
|
+
$table-border-color: #e9ebec !default;
|
23
|
+
$hr-border-color: #eff0f1 !default;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-cayman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Long
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-08-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|
@@ -17,14 +17,28 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '3.
|
20
|
+
version: '3.5'
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: '3.
|
27
|
+
version: '3.5'
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: jekyll-seo-tag
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '2.0'
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '2.0'
|
28
42
|
description:
|
29
43
|
email:
|
30
44
|
- opensource+jekyll-theme-cayman@github.com
|