jekyll-theme-hamilton 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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +156 -0
- data/_includes/custom-head.html +6 -0
- data/_includes/disqus.html +17 -0
- data/_includes/footer.html +41 -0
- data/_includes/google-analytics.html +9 -0
- data/_includes/head.html +45 -0
- data/_includes/header.html +27 -0
- data/_includes/image.html +9 -0
- data/_includes/mathjax.html +2 -0
- data/_layouts/archive-taxonomies.html +76 -0
- data/_layouts/archive-years.html +37 -0
- data/_layouts/default.html +20 -0
- data/_layouts/home.html +56 -0
- data/_layouts/page.html +19 -0
- data/_layouts/post.html +58 -0
- data/_sass/hamilton/base.scss +206 -0
- data/_sass/hamilton/custom-styles.scss +1 -0
- data/_sass/hamilton/functions.scss +9 -0
- data/_sass/hamilton/layout.scss +347 -0
- data/_sass/hamilton/main.scss +11 -0
- data/_sass/hamilton/normalize.scss +349 -0
- data/_sass/hamilton/override-variables.scss +1 -0
- data/_sass/hamilton/skin.scss +146 -0
- data/_sass/hamilton/skins/daylight.scss +233 -0
- data/_sass/hamilton/skins/midnight.scss +234 -0
- data/_sass/hamilton/skins/sunrise.scss +108 -0
- data/_sass/hamilton/skins/sunset.scss +1 -0
- data/_sass/hamilton/variables.scss +15 -0
- data/assets/css/main.scss +4 -0
- data/assets/css/skin-daylight.scss +7 -0
- data/assets/css/skin-midnight.scss +7 -0
- data/assets/css/skin-sunrise.scss +7 -0
- data/assets/css/skin-sunset.scss +7 -0
- data/assets/css/skin.scss +7 -0
- metadata +162 -0
@@ -0,0 +1,234 @@
|
|
1
|
+
$text-color: #fff !default;
|
2
|
+
$text-color-light: #dbdbdb !default;
|
3
|
+
$background-color: #2b2e33 !default;
|
4
|
+
$code-background-color: #49483e !default;
|
5
|
+
|
6
|
+
$border-color: mix(#fff, $background-color, 20%) !default;
|
7
|
+
$border-color-light: darken($border-color, 10%) !default;
|
8
|
+
$border-color-dark: lighten($border-color, 10%) !default;
|
9
|
+
|
10
|
+
$link-base-color: #00f8cf !default;
|
11
|
+
$link-visited-color: darken($link-base-color, 5%) !default;
|
12
|
+
|
13
|
+
$table-text-color: lighten($text-color, 18%) !default;
|
14
|
+
$table-zebra-color: mix($background-color, $border-color-light, 50%) !default;
|
15
|
+
$table-header-bg-color: mix($background-color, $border-color-light, 5%) !default;
|
16
|
+
$table-header-border: lighten($border-color, 30%) !default;
|
17
|
+
$table-border-color: lighten($border-color, 20%) !default;
|
18
|
+
|
19
|
+
$box-shadow: 0 1px 1px rgba(0, 0, 0, 0.205) !default;
|
20
|
+
|
21
|
+
$subscribe-color: tomato !default;
|
22
|
+
|
23
|
+
// Generated by running `rougify style base16.monokai.dark`; The version of rougify is 3.15.0
|
24
|
+
// =============================================================================
|
25
|
+
.highlight table td { padding: 5px; }
|
26
|
+
.highlight table pre { margin: 0; }
|
27
|
+
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cpf {
|
28
|
+
color: #75715e;
|
29
|
+
font-style: italic;
|
30
|
+
}
|
31
|
+
.highlight .cm {
|
32
|
+
color: #75715e;
|
33
|
+
font-style: italic;
|
34
|
+
}
|
35
|
+
.highlight .c1 {
|
36
|
+
color: #75715e;
|
37
|
+
font-style: italic;
|
38
|
+
}
|
39
|
+
.highlight .cp {
|
40
|
+
color: #75715e;
|
41
|
+
font-weight: bold;
|
42
|
+
}
|
43
|
+
.highlight .cs {
|
44
|
+
color: #75715e;
|
45
|
+
font-weight: bold;
|
46
|
+
font-style: italic;
|
47
|
+
}
|
48
|
+
.highlight .err {
|
49
|
+
color: #960050;
|
50
|
+
background-color: #1e0010;
|
51
|
+
}
|
52
|
+
.highlight .gi {
|
53
|
+
color: #ffffff;
|
54
|
+
background-color: #324932;
|
55
|
+
}
|
56
|
+
.highlight .gd {
|
57
|
+
color: #ffffff;
|
58
|
+
background-color: #493131;
|
59
|
+
}
|
60
|
+
.highlight .ge {
|
61
|
+
color: #000000;
|
62
|
+
font-style: italic;
|
63
|
+
}
|
64
|
+
.highlight .gr {
|
65
|
+
color: #aa0000;
|
66
|
+
}
|
67
|
+
.highlight .gt {
|
68
|
+
color: #aa0000;
|
69
|
+
}
|
70
|
+
.highlight .gh {
|
71
|
+
color: #999999;
|
72
|
+
}
|
73
|
+
.highlight .go {
|
74
|
+
color: #888888;
|
75
|
+
}
|
76
|
+
.highlight .gp {
|
77
|
+
color: #555555;
|
78
|
+
}
|
79
|
+
.highlight .gs {
|
80
|
+
font-weight: bold;
|
81
|
+
}
|
82
|
+
.highlight .gu {
|
83
|
+
color: #aaaaaa;
|
84
|
+
}
|
85
|
+
.highlight .k, .highlight .kv {
|
86
|
+
color: #66d9ef;
|
87
|
+
font-weight: bold;
|
88
|
+
}
|
89
|
+
.highlight .kc {
|
90
|
+
color: #66d9ef;
|
91
|
+
font-weight: bold;
|
92
|
+
}
|
93
|
+
.highlight .kd {
|
94
|
+
color: #66d9ef;
|
95
|
+
font-weight: bold;
|
96
|
+
}
|
97
|
+
.highlight .kp {
|
98
|
+
color: #66d9ef;
|
99
|
+
font-weight: bold;
|
100
|
+
}
|
101
|
+
.highlight .kr {
|
102
|
+
color: #66d9ef;
|
103
|
+
font-weight: bold;
|
104
|
+
}
|
105
|
+
.highlight .kt {
|
106
|
+
color: #66d9ef;
|
107
|
+
font-weight: bold;
|
108
|
+
}
|
109
|
+
.highlight .kn {
|
110
|
+
color: #f92672;
|
111
|
+
font-weight: bold;
|
112
|
+
}
|
113
|
+
.highlight .ow {
|
114
|
+
color: #f92672;
|
115
|
+
font-weight: bold;
|
116
|
+
}
|
117
|
+
.highlight .o {
|
118
|
+
color: #f92672;
|
119
|
+
font-weight: bold;
|
120
|
+
}
|
121
|
+
.highlight .mf {
|
122
|
+
color: #ae81ff;
|
123
|
+
}
|
124
|
+
.highlight .mh {
|
125
|
+
color: #ae81ff;
|
126
|
+
}
|
127
|
+
.highlight .il {
|
128
|
+
color: #ae81ff;
|
129
|
+
}
|
130
|
+
.highlight .mi {
|
131
|
+
color: #ae81ff;
|
132
|
+
}
|
133
|
+
.highlight .mo {
|
134
|
+
color: #ae81ff;
|
135
|
+
}
|
136
|
+
.highlight .m, .highlight .mb, .highlight .mx {
|
137
|
+
color: #ae81ff;
|
138
|
+
}
|
139
|
+
.highlight .se {
|
140
|
+
color: #ae81ff;
|
141
|
+
}
|
142
|
+
.highlight .sb {
|
143
|
+
color: #e6db74;
|
144
|
+
}
|
145
|
+
.highlight .sc {
|
146
|
+
color: #e6db74;
|
147
|
+
}
|
148
|
+
.highlight .sd {
|
149
|
+
color: #e6db74;
|
150
|
+
}
|
151
|
+
.highlight .s2 {
|
152
|
+
color: #e6db74;
|
153
|
+
}
|
154
|
+
.highlight .sh {
|
155
|
+
color: #e6db74;
|
156
|
+
}
|
157
|
+
.highlight .si {
|
158
|
+
color: #e6db74;
|
159
|
+
}
|
160
|
+
.highlight .sx {
|
161
|
+
color: #e6db74;
|
162
|
+
}
|
163
|
+
.highlight .sr {
|
164
|
+
color: #e6db74;
|
165
|
+
}
|
166
|
+
.highlight .s1 {
|
167
|
+
color: #e6db74;
|
168
|
+
}
|
169
|
+
.highlight .ss {
|
170
|
+
color: #e6db74;
|
171
|
+
}
|
172
|
+
.highlight .s, .highlight .sa, .highlight .dl {
|
173
|
+
color: #e6db74;
|
174
|
+
}
|
175
|
+
.highlight .na {
|
176
|
+
color: #a6e22e;
|
177
|
+
}
|
178
|
+
.highlight .nc {
|
179
|
+
color: #a6e22e;
|
180
|
+
font-weight: bold;
|
181
|
+
}
|
182
|
+
.highlight .nd {
|
183
|
+
color: #a6e22e;
|
184
|
+
font-weight: bold;
|
185
|
+
}
|
186
|
+
.highlight .ne {
|
187
|
+
color: #a6e22e;
|
188
|
+
font-weight: bold;
|
189
|
+
}
|
190
|
+
.highlight .nf, .highlight .fm {
|
191
|
+
color: #a6e22e;
|
192
|
+
font-weight: bold;
|
193
|
+
}
|
194
|
+
.highlight .no {
|
195
|
+
color: #66d9ef;
|
196
|
+
}
|
197
|
+
.highlight .bp {
|
198
|
+
color: #f8f8f2;
|
199
|
+
}
|
200
|
+
.highlight .nb {
|
201
|
+
color: #f8f8f2;
|
202
|
+
}
|
203
|
+
.highlight .ni {
|
204
|
+
color: #f8f8f2;
|
205
|
+
}
|
206
|
+
.highlight .nn {
|
207
|
+
color: #f8f8f2;
|
208
|
+
}
|
209
|
+
.highlight .vc {
|
210
|
+
color: #f8f8f2;
|
211
|
+
}
|
212
|
+
.highlight .vg {
|
213
|
+
color: #f8f8f2;
|
214
|
+
}
|
215
|
+
.highlight .vi {
|
216
|
+
color: #f8f8f2;
|
217
|
+
}
|
218
|
+
.highlight .nv, .highlight .vm {
|
219
|
+
color: #f8f8f2;
|
220
|
+
}
|
221
|
+
.highlight .w {
|
222
|
+
color: #f8f8f2;
|
223
|
+
}
|
224
|
+
.highlight .nl {
|
225
|
+
color: #f8f8f2;
|
226
|
+
font-weight: bold;
|
227
|
+
}
|
228
|
+
.highlight .nt {
|
229
|
+
color: #f92672;
|
230
|
+
}
|
231
|
+
.highlight {
|
232
|
+
color: #f8f8f2;
|
233
|
+
background-color: #49483e;
|
234
|
+
}
|
@@ -0,0 +1,108 @@
|
|
1
|
+
$text-color: #222 !default;
|
2
|
+
$text-color-light: #373737 !default;
|
3
|
+
$background-color: #ecdbbb !default;
|
4
|
+
$code-background-color: #fbf1c7 !default;
|
5
|
+
|
6
|
+
$border-color: mix(#000, $background-color, 20%) !default;
|
7
|
+
$border-color-light: lighten($border-color, 10%) !default;
|
8
|
+
$border-color-dark: darken($border-color, 25%) !default;
|
9
|
+
|
10
|
+
$link-base-color: #760000 !default;
|
11
|
+
$link-visited-color: darken($link-base-color, 5%) !default;
|
12
|
+
|
13
|
+
$table-text-color: lighten($text-color, 18%) !default;
|
14
|
+
$table-zebra-color: mix($background-color, $border-color, 80%) !default;
|
15
|
+
$table-header-bg-color: mix($background-color, $border-color, 70%) !default;
|
16
|
+
$table-header-border: $border-color !default;
|
17
|
+
$table-border-color: $border-color-light !default;
|
18
|
+
|
19
|
+
$box-shadow: 0 1px 1px rgba(0, 0, 0, 0.205) !default;
|
20
|
+
|
21
|
+
$subscribe-color: #004e00 !default;
|
22
|
+
|
23
|
+
// Generated by running `rougify style gruvbox.light`; The version of rougify is 3.15.0
|
24
|
+
// =============================================================================
|
25
|
+
.highlight table td { padding: 5px; }
|
26
|
+
.highlight table pre { margin: 0; }
|
27
|
+
.highlight, .highlight .w {
|
28
|
+
color: #282828;
|
29
|
+
background-color: #fbf1c7;
|
30
|
+
}
|
31
|
+
.highlight .err {
|
32
|
+
color: #9d0006;
|
33
|
+
background-color: #fbf1c7;
|
34
|
+
font-weight: bold;
|
35
|
+
}
|
36
|
+
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cpf, .highlight .c1, .highlight .cs {
|
37
|
+
color: #928374;
|
38
|
+
font-style: italic;
|
39
|
+
}
|
40
|
+
.highlight .cp {
|
41
|
+
color: #427b58;
|
42
|
+
}
|
43
|
+
.highlight .nt {
|
44
|
+
color: #9d0006;
|
45
|
+
}
|
46
|
+
.highlight .o, .highlight .ow {
|
47
|
+
color: #282828;
|
48
|
+
}
|
49
|
+
.highlight .p, .highlight .pi {
|
50
|
+
color: #282828;
|
51
|
+
}
|
52
|
+
.highlight .gi {
|
53
|
+
color: #79740e;
|
54
|
+
background-color: #fbf1c7;
|
55
|
+
}
|
56
|
+
.highlight .gd {
|
57
|
+
color: #9d0006;
|
58
|
+
background-color: #fbf1c7;
|
59
|
+
}
|
60
|
+
.highlight .gh {
|
61
|
+
color: #79740e;
|
62
|
+
font-weight: bold;
|
63
|
+
}
|
64
|
+
.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
|
65
|
+
color: #9d0006;
|
66
|
+
}
|
67
|
+
.highlight .kc {
|
68
|
+
color: #8f3f71;
|
69
|
+
}
|
70
|
+
.highlight .kt {
|
71
|
+
color: #b57614;
|
72
|
+
}
|
73
|
+
.highlight .kd {
|
74
|
+
color: #af3a03;
|
75
|
+
}
|
76
|
+
.highlight .s, .highlight .sa, .highlight .sb, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
|
77
|
+
color: #79740e;
|
78
|
+
font-style: italic;
|
79
|
+
}
|
80
|
+
.highlight .si {
|
81
|
+
color: #79740e;
|
82
|
+
font-style: italic;
|
83
|
+
}
|
84
|
+
.highlight .sr {
|
85
|
+
color: #79740e;
|
86
|
+
font-style: italic;
|
87
|
+
}
|
88
|
+
.highlight .se {
|
89
|
+
color: #af3a03;
|
90
|
+
}
|
91
|
+
.highlight .nn {
|
92
|
+
color: #427b58;
|
93
|
+
}
|
94
|
+
.highlight .nc {
|
95
|
+
color: #427b58;
|
96
|
+
}
|
97
|
+
.highlight .no {
|
98
|
+
color: #8f3f71;
|
99
|
+
}
|
100
|
+
.highlight .na {
|
101
|
+
color: #79740e;
|
102
|
+
}
|
103
|
+
.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
|
104
|
+
color: #8f3f71;
|
105
|
+
}
|
106
|
+
.highlight .ss {
|
107
|
+
color: #076678;
|
108
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
@import "hamilton/skins/sunrise";
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// Fonts
|
2
|
+
$base-font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !default;
|
3
|
+
$title-font-family: "Brush Script MT", $base-font-family !default;
|
4
|
+
$reading-font-family: "Georgia", $base-font-family !default;
|
5
|
+
$code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
|
6
|
+
$base-font-size: 18px !default;
|
7
|
+
$base-line-height: 1.4 !default;
|
8
|
+
|
9
|
+
// Layouts
|
10
|
+
$spacing-unit: 2rem !default;
|
11
|
+
$content-width: 840px !default;
|
12
|
+
|
13
|
+
$on-small: 500px !default;
|
14
|
+
$on-medium: 700px !default;
|
15
|
+
$on-large: 840px !default;
|
metadata
ADDED
@@ -0,0 +1,162 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-theme-hamilton
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Shangzhi Huang
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-04-04 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: jekyll-seo-tag~> 2.6.1
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: jekyll-feed
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.13.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.13.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: jekyll-sitemap
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.4.0
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 1.4.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bundler
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '2.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '2.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '12.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '12.0'
|
97
|
+
description:
|
98
|
+
email:
|
99
|
+
- ngzhio@protonmail.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- LICENSE.txt
|
105
|
+
- README.md
|
106
|
+
- _includes/custom-head.html
|
107
|
+
- _includes/disqus.html
|
108
|
+
- _includes/footer.html
|
109
|
+
- _includes/google-analytics.html
|
110
|
+
- _includes/head.html
|
111
|
+
- _includes/header.html
|
112
|
+
- _includes/image.html
|
113
|
+
- _includes/mathjax.html
|
114
|
+
- _layouts/archive-taxonomies.html
|
115
|
+
- _layouts/archive-years.html
|
116
|
+
- _layouts/default.html
|
117
|
+
- _layouts/home.html
|
118
|
+
- _layouts/page.html
|
119
|
+
- _layouts/post.html
|
120
|
+
- _sass/hamilton/base.scss
|
121
|
+
- _sass/hamilton/custom-styles.scss
|
122
|
+
- _sass/hamilton/functions.scss
|
123
|
+
- _sass/hamilton/layout.scss
|
124
|
+
- _sass/hamilton/main.scss
|
125
|
+
- _sass/hamilton/normalize.scss
|
126
|
+
- _sass/hamilton/override-variables.scss
|
127
|
+
- _sass/hamilton/skin.scss
|
128
|
+
- _sass/hamilton/skins/daylight.scss
|
129
|
+
- _sass/hamilton/skins/midnight.scss
|
130
|
+
- _sass/hamilton/skins/sunrise.scss
|
131
|
+
- _sass/hamilton/skins/sunset.scss
|
132
|
+
- _sass/hamilton/variables.scss
|
133
|
+
- assets/css/main.scss
|
134
|
+
- assets/css/skin-daylight.scss
|
135
|
+
- assets/css/skin-midnight.scss
|
136
|
+
- assets/css/skin-sunrise.scss
|
137
|
+
- assets/css/skin-sunset.scss
|
138
|
+
- assets/css/skin.scss
|
139
|
+
homepage: https://github.com/ngzhio/jekyll-theme-hamilton
|
140
|
+
licenses:
|
141
|
+
- MIT
|
142
|
+
metadata: {}
|
143
|
+
post_install_message:
|
144
|
+
rdoc_options: []
|
145
|
+
require_paths:
|
146
|
+
- lib
|
147
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - ">="
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0'
|
152
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
153
|
+
requirements:
|
154
|
+
- - ">="
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
version: '0'
|
157
|
+
requirements: []
|
158
|
+
rubygems_version: 3.0.1
|
159
|
+
signing_key:
|
160
|
+
specification_version: 4
|
161
|
+
summary: Another minimal style of Jekyll theme for writers
|
162
|
+
test_files: []
|