minduim 1.0.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/_config.yml +72 -0
- data/_includes/footer.html +16 -0
- data/_includes/header.html +31 -0
- data/_includes/post.html +25 -0
- data/_includes/sidebar.html +31 -0
- data/_includes/widget.html +5 -0
- data/_layouts/archive.html +41 -0
- data/_layouts/blog.html +35 -0
- data/_layouts/default.html +29 -0
- data/_layouts/page.html +13 -0
- data/_layouts/post.html +62 -0
- data/assets/css/base.css +379 -0
- data/assets/css/layout.css +235 -0
- data/assets/css/syntax.css +425 -0
- data/assets/css/theme.css +40 -0
- metadata +174 -0
@@ -0,0 +1,425 @@
|
|
1
|
+
.highlight .hll {
|
2
|
+
background-color: #ffffcc;
|
3
|
+
}
|
4
|
+
.highlight .c {
|
5
|
+
color: #408080;
|
6
|
+
font-style: italic;
|
7
|
+
} /* Comment */
|
8
|
+
.highlight .err {
|
9
|
+
border: 1px solid #ff0000;
|
10
|
+
} /* Error */
|
11
|
+
.highlight .k {
|
12
|
+
color: #008000;
|
13
|
+
font-weight: bold;
|
14
|
+
} /* Keyword */
|
15
|
+
.highlight .o {
|
16
|
+
color: #666666;
|
17
|
+
} /* Operator */
|
18
|
+
.highlight .cm {
|
19
|
+
color: #408080;
|
20
|
+
font-style: italic;
|
21
|
+
} /* Comment.Multiline */
|
22
|
+
.highlight .cp {
|
23
|
+
color: #bc7a00;
|
24
|
+
} /* Comment.Preproc */
|
25
|
+
.highlight .c1 {
|
26
|
+
color: #408080;
|
27
|
+
font-style: italic;
|
28
|
+
} /* Comment.Single */
|
29
|
+
.highlight .cs {
|
30
|
+
color: #408080;
|
31
|
+
font-style: italic;
|
32
|
+
} /* Comment.Special */
|
33
|
+
.highlight .gd {
|
34
|
+
color: #a00000;
|
35
|
+
} /* Generic.Deleted */
|
36
|
+
.highlight .ge {
|
37
|
+
font-style: italic;
|
38
|
+
} /* Generic.Emph */
|
39
|
+
.highlight .gr {
|
40
|
+
color: #ff0000;
|
41
|
+
} /* Generic.Error */
|
42
|
+
.highlight .gh {
|
43
|
+
color: #000080;
|
44
|
+
font-weight: bold;
|
45
|
+
} /* Generic.Heading */
|
46
|
+
.highlight .gi {
|
47
|
+
color: #00a000;
|
48
|
+
} /* Generic.Inserted */
|
49
|
+
.highlight .go {
|
50
|
+
color: #808080;
|
51
|
+
} /* Generic.Output */
|
52
|
+
.highlight .gp {
|
53
|
+
color: #000080;
|
54
|
+
font-weight: bold;
|
55
|
+
} /* Generic.Prompt */
|
56
|
+
.highlight .gs {
|
57
|
+
font-weight: bold;
|
58
|
+
} /* Generic.Strong */
|
59
|
+
.highlight .gu {
|
60
|
+
color: #800080;
|
61
|
+
font-weight: bold;
|
62
|
+
} /* Generic.Subheading */
|
63
|
+
.highlight .gt {
|
64
|
+
color: #0040d0;
|
65
|
+
} /* Generic.Traceback */
|
66
|
+
.highlight .kc {
|
67
|
+
color: #008000;
|
68
|
+
font-weight: bold;
|
69
|
+
} /* Keyword.Constant */
|
70
|
+
.highlight .kd {
|
71
|
+
color: #008000;
|
72
|
+
font-weight: bold;
|
73
|
+
} /* Keyword.Declaration */
|
74
|
+
.highlight .kn {
|
75
|
+
color: #008000;
|
76
|
+
font-weight: bold;
|
77
|
+
} /* Keyword.Namespace */
|
78
|
+
.highlight .kp {
|
79
|
+
color: #008000;
|
80
|
+
} /* Keyword.Pseudo */
|
81
|
+
.highlight .kr {
|
82
|
+
color: #008000;
|
83
|
+
font-weight: bold;
|
84
|
+
} /* Keyword.Reserved */
|
85
|
+
.highlight .kt {
|
86
|
+
color: #b00040;
|
87
|
+
} /* Keyword.Type */
|
88
|
+
.highlight .m {
|
89
|
+
color: #666666;
|
90
|
+
} /* Literal.Number */
|
91
|
+
.highlight .s {
|
92
|
+
color: #ba2121;
|
93
|
+
} /* Literal.String */
|
94
|
+
.highlight .na {
|
95
|
+
color: #7d9029;
|
96
|
+
} /* Name.Attribute */
|
97
|
+
.highlight .nb {
|
98
|
+
color: #008000;
|
99
|
+
} /* Name.Builtin */
|
100
|
+
.highlight .nc {
|
101
|
+
color: #0000ff;
|
102
|
+
font-weight: bold;
|
103
|
+
} /* Name.Class */
|
104
|
+
.highlight .no {
|
105
|
+
color: #880000;
|
106
|
+
} /* Name.Constant */
|
107
|
+
.highlight .nd {
|
108
|
+
color: #aa22ff;
|
109
|
+
} /* Name.Decorator */
|
110
|
+
.highlight .ni {
|
111
|
+
color: #999999;
|
112
|
+
font-weight: bold;
|
113
|
+
} /* Name.Entity */
|
114
|
+
.highlight .ne {
|
115
|
+
color: #d2413a;
|
116
|
+
font-weight: bold;
|
117
|
+
} /* Name.Exception */
|
118
|
+
.highlight .nf {
|
119
|
+
color: #0000ff;
|
120
|
+
} /* Name.Function */
|
121
|
+
.highlight .nl {
|
122
|
+
color: #a0a000;
|
123
|
+
} /* Name.Label */
|
124
|
+
.highlight .nn {
|
125
|
+
color: #0000ff;
|
126
|
+
font-weight: bold;
|
127
|
+
} /* Name.Namespace */
|
128
|
+
.highlight .nt {
|
129
|
+
color: #008000;
|
130
|
+
font-weight: bold;
|
131
|
+
} /* Name.Tag */
|
132
|
+
.highlight .nv {
|
133
|
+
color: #19177c;
|
134
|
+
} /* Name.Variable */
|
135
|
+
.highlight .ow {
|
136
|
+
color: #aa22ff;
|
137
|
+
font-weight: bold;
|
138
|
+
} /* Operator.Word */
|
139
|
+
.highlight .w {
|
140
|
+
color: #bbbbbb;
|
141
|
+
} /* Text.Whitespace */
|
142
|
+
.highlight .mf {
|
143
|
+
color: #666666;
|
144
|
+
} /* Literal.Number.Float */
|
145
|
+
.highlight .mh {
|
146
|
+
color: #666666;
|
147
|
+
} /* Literal.Number.Hex */
|
148
|
+
.highlight .mi {
|
149
|
+
color: #666666;
|
150
|
+
} /* Literal.Number.Integer */
|
151
|
+
.highlight .mo {
|
152
|
+
color: #666666;
|
153
|
+
} /* Literal.Number.Oct */
|
154
|
+
.highlight .sb {
|
155
|
+
color: #ba2121;
|
156
|
+
} /* Literal.String.Backtick */
|
157
|
+
.highlight .sc {
|
158
|
+
color: #ba2121;
|
159
|
+
} /* Literal.String.Char */
|
160
|
+
.highlight .sd {
|
161
|
+
color: #ba2121;
|
162
|
+
font-style: italic;
|
163
|
+
} /* Literal.String.Doc */
|
164
|
+
.highlight .s2 {
|
165
|
+
color: #ba2121;
|
166
|
+
} /* Literal.String.Double */
|
167
|
+
.highlight .se {
|
168
|
+
color: #bb6622;
|
169
|
+
font-weight: bold;
|
170
|
+
} /* Literal.String.Escape */
|
171
|
+
.highlight .sh {
|
172
|
+
color: #ba2121;
|
173
|
+
} /* Literal.String.Heredoc */
|
174
|
+
.highlight .si {
|
175
|
+
color: #bb6688;
|
176
|
+
font-weight: bold;
|
177
|
+
} /* Literal.String.Interpol */
|
178
|
+
.highlight .sx {
|
179
|
+
color: #008000;
|
180
|
+
} /* Literal.String.Other */
|
181
|
+
.highlight .sr {
|
182
|
+
color: #bb6688;
|
183
|
+
} /* Literal.String.Regex */
|
184
|
+
.highlight .s1 {
|
185
|
+
color: #ba2121;
|
186
|
+
} /* Literal.String.Single */
|
187
|
+
.highlight .ss {
|
188
|
+
color: #19177c;
|
189
|
+
} /* Literal.String.Symbol */
|
190
|
+
.highlight .bp {
|
191
|
+
color: #008000;
|
192
|
+
} /* Name.Builtin.Pseudo */
|
193
|
+
.highlight .vc {
|
194
|
+
color: #19177c;
|
195
|
+
} /* Name.Variable.Class */
|
196
|
+
.highlight .vg {
|
197
|
+
color: #19177c;
|
198
|
+
} /* Name.Variable.Global */
|
199
|
+
.highlight .vi {
|
200
|
+
color: #19177c;
|
201
|
+
} /* Name.Variable.Instance */
|
202
|
+
.highlight .il {
|
203
|
+
color: #666666;
|
204
|
+
} /* Literal.Number.Integer.Long */
|
205
|
+
|
206
|
+
@media (prefers-color-scheme: dark) {
|
207
|
+
.highlight pre {
|
208
|
+
background-color: #222222;
|
209
|
+
}
|
210
|
+
.highlight .hll {
|
211
|
+
background-color: #222222;
|
212
|
+
}
|
213
|
+
.highlight .c {
|
214
|
+
color: #000080;
|
215
|
+
} /* Comment */
|
216
|
+
.highlight .err {
|
217
|
+
color: #cccccc;
|
218
|
+
border: 1px solid #ff0000;
|
219
|
+
} /* Error */
|
220
|
+
.highlight .g {
|
221
|
+
color: #cccccc;
|
222
|
+
} /* Generic */
|
223
|
+
.highlight .k {
|
224
|
+
color: #cdcd00;
|
225
|
+
} /* Keyword */
|
226
|
+
.highlight .l {
|
227
|
+
color: #cccccc;
|
228
|
+
} /* Literal */
|
229
|
+
.highlight .n {
|
230
|
+
color: #cccccc;
|
231
|
+
} /* Name */
|
232
|
+
.highlight .o {
|
233
|
+
color: #3399cc;
|
234
|
+
} /* Operator */
|
235
|
+
.highlight .x {
|
236
|
+
color: #cccccc;
|
237
|
+
} /* Other */
|
238
|
+
.highlight .p {
|
239
|
+
color: #cccccc;
|
240
|
+
} /* Punctuation */
|
241
|
+
.highlight .cm {
|
242
|
+
color: #000080;
|
243
|
+
} /* Comment.Multiline */
|
244
|
+
.highlight .cp {
|
245
|
+
color: #000080;
|
246
|
+
} /* Comment.Preproc */
|
247
|
+
.highlight .c1 {
|
248
|
+
color: #000080;
|
249
|
+
} /* Comment.Single */
|
250
|
+
.highlight .cs {
|
251
|
+
color: #cd0000;
|
252
|
+
font-weight: bold;
|
253
|
+
} /* Comment.Special */
|
254
|
+
.highlight .gd {
|
255
|
+
color: #cd0000;
|
256
|
+
} /* Generic.Deleted */
|
257
|
+
.highlight .ge {
|
258
|
+
color: #cccccc;
|
259
|
+
font-style: italic;
|
260
|
+
} /* Generic.Emph */
|
261
|
+
.highlight .gr {
|
262
|
+
color: #ff0000;
|
263
|
+
} /* Generic.Error */
|
264
|
+
.highlight .gh {
|
265
|
+
color: #000080;
|
266
|
+
font-weight: bold;
|
267
|
+
} /* Generic.Heading */
|
268
|
+
.highlight .gi {
|
269
|
+
color: #00cd00;
|
270
|
+
} /* Generic.Inserted */
|
271
|
+
.highlight .go {
|
272
|
+
color: #808080;
|
273
|
+
} /* Generic.Output */
|
274
|
+
.highlight .gp {
|
275
|
+
color: #000080;
|
276
|
+
font-weight: bold;
|
277
|
+
} /* Generic.Prompt */
|
278
|
+
.highlight .gs {
|
279
|
+
color: #cccccc;
|
280
|
+
font-weight: bold;
|
281
|
+
} /* Generic.Strong */
|
282
|
+
.highlight .gu {
|
283
|
+
color: #800080;
|
284
|
+
font-weight: bold;
|
285
|
+
} /* Generic.Subheading */
|
286
|
+
.highlight .gt {
|
287
|
+
color: #0040d0;
|
288
|
+
} /* Generic.Traceback */
|
289
|
+
.highlight .kc {
|
290
|
+
color: #cdcd00;
|
291
|
+
} /* Keyword.Constant */
|
292
|
+
.highlight .kd {
|
293
|
+
color: #00cd00;
|
294
|
+
} /* Keyword.Declaration */
|
295
|
+
.highlight .kn {
|
296
|
+
color: #cd00cd;
|
297
|
+
} /* Keyword.Namespace */
|
298
|
+
.highlight .kp {
|
299
|
+
color: #cdcd00;
|
300
|
+
} /* Keyword.Pseudo */
|
301
|
+
.highlight .kr {
|
302
|
+
color: #cdcd00;
|
303
|
+
} /* Keyword.Reserved */
|
304
|
+
.highlight .kt {
|
305
|
+
color: #00cd00;
|
306
|
+
} /* Keyword.Type */
|
307
|
+
.highlight .ld {
|
308
|
+
color: #cccccc;
|
309
|
+
} /* Literal.Date */
|
310
|
+
.highlight .m {
|
311
|
+
color: #cd00cd;
|
312
|
+
} /* Literal.Number */
|
313
|
+
.highlight .s {
|
314
|
+
color: #cd0000;
|
315
|
+
} /* Literal.String */
|
316
|
+
.highlight .na {
|
317
|
+
color: #cccccc;
|
318
|
+
} /* Name.Attribute */
|
319
|
+
.highlight .nb {
|
320
|
+
color: #cd00cd;
|
321
|
+
} /* Name.Builtin */
|
322
|
+
.highlight .nc {
|
323
|
+
color: #00cdcd;
|
324
|
+
} /* Name.Class */
|
325
|
+
.highlight .no {
|
326
|
+
color: #cccccc;
|
327
|
+
} /* Name.Constant */
|
328
|
+
.highlight .nd {
|
329
|
+
color: #cccccc;
|
330
|
+
} /* Name.Decorator */
|
331
|
+
.highlight .ni {
|
332
|
+
color: #cccccc;
|
333
|
+
} /* Name.Entity */
|
334
|
+
.highlight .ne {
|
335
|
+
color: #666699;
|
336
|
+
font-weight: bold;
|
337
|
+
} /* Name.Exception */
|
338
|
+
.highlight .nf {
|
339
|
+
color: #cccccc;
|
340
|
+
} /* Name.Function */
|
341
|
+
.highlight .nl {
|
342
|
+
color: #cccccc;
|
343
|
+
} /* Name.Label */
|
344
|
+
.highlight .nn {
|
345
|
+
color: #cccccc;
|
346
|
+
} /* Name.Namespace */
|
347
|
+
.highlight .nx {
|
348
|
+
color: #cccccc;
|
349
|
+
} /* Name.Other */
|
350
|
+
.highlight .py {
|
351
|
+
color: #cccccc;
|
352
|
+
} /* Name.Property */
|
353
|
+
.highlight .nt {
|
354
|
+
color: #cccccc;
|
355
|
+
} /* Name.Tag */
|
356
|
+
.highlight .nv {
|
357
|
+
color: #00cdcd;
|
358
|
+
} /* Name.Variable */
|
359
|
+
.highlight .ow {
|
360
|
+
color: #cdcd00;
|
361
|
+
} /* Operator.Word */
|
362
|
+
.highlight .w {
|
363
|
+
color: #cccccc;
|
364
|
+
} /* Text.Whitespace */
|
365
|
+
.highlight .mf {
|
366
|
+
color: #cd00cd;
|
367
|
+
} /* Literal.Number.Float */
|
368
|
+
.highlight .mh {
|
369
|
+
color: #cd00cd;
|
370
|
+
} /* Literal.Number.Hex */
|
371
|
+
.highlight .mi {
|
372
|
+
color: #cd00cd;
|
373
|
+
} /* Literal.Number.Integer */
|
374
|
+
.highlight .mo {
|
375
|
+
color: #cd00cd;
|
376
|
+
} /* Literal.Number.Oct */
|
377
|
+
.highlight .sb {
|
378
|
+
color: #cd0000;
|
379
|
+
} /* Literal.String.Backtick */
|
380
|
+
.highlight .sc {
|
381
|
+
color: #cd0000;
|
382
|
+
} /* Literal.String.Char */
|
383
|
+
.highlight .sd {
|
384
|
+
color: #cd0000;
|
385
|
+
} /* Literal.String.Doc */
|
386
|
+
.highlight .s2 {
|
387
|
+
color: #cd0000;
|
388
|
+
} /* Literal.String.Double */
|
389
|
+
.highlight .se {
|
390
|
+
color: #cd0000;
|
391
|
+
} /* Literal.String.Escape */
|
392
|
+
.highlight .sh {
|
393
|
+
color: #cd0000;
|
394
|
+
} /* Literal.String.Heredoc */
|
395
|
+
.highlight .si {
|
396
|
+
color: #cd0000;
|
397
|
+
} /* Literal.String.Interpol */
|
398
|
+
.highlight .sx {
|
399
|
+
color: #cd0000;
|
400
|
+
} /* Literal.String.Other */
|
401
|
+
.highlight .sr {
|
402
|
+
color: #cd0000;
|
403
|
+
} /* Literal.String.Regex */
|
404
|
+
.highlight .s1 {
|
405
|
+
color: #cd0000;
|
406
|
+
} /* Literal.String.Single */
|
407
|
+
.highlight .ss {
|
408
|
+
color: #cd0000;
|
409
|
+
} /* Literal.String.Symbol */
|
410
|
+
.highlight .bp {
|
411
|
+
color: #cd00cd;
|
412
|
+
} /* Name.Builtin.Pseudo */
|
413
|
+
.highlight .vc {
|
414
|
+
color: #00cdcd;
|
415
|
+
} /* Name.Variable.Class */
|
416
|
+
.highlight .vg {
|
417
|
+
color: #00cdcd;
|
418
|
+
} /* Name.Variable.Global */
|
419
|
+
.highlight .vi {
|
420
|
+
color: #00cdcd;
|
421
|
+
} /* Name.Variable.Instance */
|
422
|
+
.highlight .il {
|
423
|
+
color: #cd00cd;
|
424
|
+
} /* Literal.Number.Integer.Long */
|
425
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
/*
|
2
|
+
Theme Options
|
3
|
+
Replace this file in your site repo and uncomment the values you
|
4
|
+
would like to change.
|
5
|
+
*/
|
6
|
+
|
7
|
+
:root {
|
8
|
+
/*
|
9
|
+
Typography
|
10
|
+
*/
|
11
|
+
/*--font-family-base: ui-sans-serif, sans-serif;*/
|
12
|
+
/*--font-family-headings: var(--font-family-base);*/
|
13
|
+
/*--font-family-quote: ui-serif, serif;*/
|
14
|
+
/*--font-family-code: ui-monospace, monospace;*/
|
15
|
+
/*--font-size-base: 16px;*/
|
16
|
+
/*--font-size-small: 0.875em;*/
|
17
|
+
/*
|
18
|
+
Colors
|
19
|
+
*/
|
20
|
+
/*--color-background: var(--white);*/
|
21
|
+
/*--color-foreground: var(--black);*/
|
22
|
+
/*--color-accent: var(--yellow);*/
|
23
|
+
/*--color-accent-alt: var(--red);*/
|
24
|
+
/*--color-details: var(--gray);*/
|
25
|
+
/*
|
26
|
+
Details
|
27
|
+
*/
|
28
|
+
/*--radius: 0.5rem;*/
|
29
|
+
/*--border: 1px dotted var(--color-details);*/
|
30
|
+
/*--shadow: 0 0 7px var(--color-details);*/
|
31
|
+
/*--transition-duration: 0.36s;*/
|
32
|
+
/*
|
33
|
+
Color palette
|
34
|
+
*/
|
35
|
+
/*--white: rgb(255, 255, 255);*/
|
36
|
+
/*--black: rgb(44, 44, 44);*/
|
37
|
+
/*--gray: rgb(133, 146, 158);*/
|
38
|
+
/*--red: rgb(231, 76, 60);*/
|
39
|
+
/*--yellow: rgb(241, 196, 15);*/
|
40
|
+
}
|
metadata
ADDED
@@ -0,0 +1,174 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: minduim
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Arthur Freitas
|
8
|
+
bindir: bin
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: jekyll
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '4.0'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '4.0'
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: jekyll-archives
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - "~>"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '2.3'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '2.3'
|
40
|
+
- !ruby/object:Gem::Dependency
|
41
|
+
name: jekyll-feed
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 0.17.0
|
47
|
+
type: :runtime
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 0.17.0
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: jekyll-json-feed
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '1.0'
|
61
|
+
type: :runtime
|
62
|
+
prerelease: false
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '1.0'
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
name: jekyll-paginate
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '1.1'
|
75
|
+
type: :runtime
|
76
|
+
prerelease: false
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '1.1'
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: jekyll-seo-tag
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '2.8'
|
89
|
+
type: :runtime
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '2.8'
|
96
|
+
- !ruby/object:Gem::Dependency
|
97
|
+
name: jekyll-sitemap
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '1.4'
|
103
|
+
type: :runtime
|
104
|
+
prerelease: false
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '1.4'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: bundler
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '1.16'
|
117
|
+
type: :development
|
118
|
+
prerelease: false
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - ">="
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: '1.16'
|
124
|
+
description: Minduim is a charming blog theme for Jekyll based on the classic Posterous
|
125
|
+
default theme. It offers a two-column layout with support for pagination, archives,
|
126
|
+
SEO tags, and customizable sidebar widgets.
|
127
|
+
email:
|
128
|
+
- email@arthr.me
|
129
|
+
executables: []
|
130
|
+
extensions: []
|
131
|
+
extra_rdoc_files: []
|
132
|
+
files:
|
133
|
+
- _config.yml
|
134
|
+
- _includes/footer.html
|
135
|
+
- _includes/header.html
|
136
|
+
- _includes/post.html
|
137
|
+
- _includes/sidebar.html
|
138
|
+
- _includes/widget.html
|
139
|
+
- _layouts/archive.html
|
140
|
+
- _layouts/blog.html
|
141
|
+
- _layouts/default.html
|
142
|
+
- _layouts/page.html
|
143
|
+
- _layouts/post.html
|
144
|
+
- assets/css/base.css
|
145
|
+
- assets/css/layout.css
|
146
|
+
- assets/css/syntax.css
|
147
|
+
- assets/css/theme.css
|
148
|
+
homepage: https://minduim.arthr.dev
|
149
|
+
licenses:
|
150
|
+
- MIT
|
151
|
+
metadata:
|
152
|
+
plugin_type: theme
|
153
|
+
homepage_uri: https://minduim.arthr.dev
|
154
|
+
source_code_uri: https://github.com/arthrfrts/minduim
|
155
|
+
changelog_uri: https://github.com/arthrfrts/minduim/releases
|
156
|
+
bug_tracker_uri: https://github.com/arthrfrts/minduim/issues
|
157
|
+
rdoc_options: []
|
158
|
+
require_paths:
|
159
|
+
- lib
|
160
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
161
|
+
requirements:
|
162
|
+
- - ">="
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: 2.7.0
|
165
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
166
|
+
requirements:
|
167
|
+
- - ">="
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: '0'
|
170
|
+
requirements: []
|
171
|
+
rubygems_version: 3.6.9
|
172
|
+
specification_version: 4
|
173
|
+
summary: A charming blog theme for Jekyll.
|
174
|
+
test_files: []
|