jekyll-theme-open-project 2.0.16 → 2.0.17
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 +17 -10
- data/_config.yml +1 -1
- data/_includes/post-card.html +1 -1
- data/_sass/open-project-mixins.scss +36 -3
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f95beca807a4e9dd6e94f0c6d4d3b6da57595333
|
|
4
|
+
data.tar.gz: dadd18b2e4621c88bb4cc10f71a4bb21be11e95a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce9f55845344835cc3afae884d1620ae4c4d97ce8fb95025f7512fbd78071cc609302db8ed87639df3cb50582558aa398948a6c52f16a76eaa60f6d5eded8e10
|
|
7
|
+
data.tar.gz: 0d50d605c7ba71c480f513cfe1f4e16476087a302d936964454ffa651cab0749f3c43671cb2c30e7664e1b6a2e7e5fbc23c37f2e352b08d50270a08b2aa6a717
|
data/README.md
CHANGED
|
@@ -221,17 +221,24 @@ already required by Jekyll) looks like:
|
|
|
221
221
|
|
|
222
222
|
```yaml
|
|
223
223
|
---
|
|
224
|
+
# Required
|
|
225
|
+
authors:
|
|
226
|
+
- email: <author’s email, required>
|
|
227
|
+
use_picture: <`gravatar` (default), `assets`, an image path relative to assets/, or `no`>
|
|
228
|
+
name: <author’s full name>
|
|
229
|
+
social_links:
|
|
230
|
+
- https://twitter.com/username
|
|
231
|
+
- https://facebook.com/username
|
|
232
|
+
- https://linkedin.com/in/username
|
|
233
|
+
|
|
234
|
+
# Recommended
|
|
224
235
|
excerpt: >-
|
|
225
|
-
Post excerpt goes here, and supports inline formatting only.
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
social_links:
|
|
232
|
-
- https://twitter.com/username
|
|
233
|
-
- https://facebook.com/username
|
|
234
|
-
- https://linkedin.com/in/username
|
|
236
|
+
Post excerpt goes here, and supports inline HTML formatting only.
|
|
237
|
+
|
|
238
|
+
# Optional. Cover image. Would normally refer to an illustration from within the post.
|
|
239
|
+
# First post, if it has card_image specified, will be displayed with bigger layout
|
|
240
|
+
# featuring the image.
|
|
241
|
+
card_image: <path, starting with /assets/>
|
|
235
242
|
---
|
|
236
243
|
```
|
|
237
244
|
|
data/_config.yml
CHANGED
data/_includes/post-card.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{% if include.post.parent_project %}
|
|
2
|
-
{% capture href %}{{ include.post.parent_project.home_url }}blog/{{ include.post.date | date: "%m-%d
|
|
2
|
+
{% capture href %}{{ include.post.parent_project.home_url }}blog/{{ include.post.date | date: "%Y-%m-%d" }}-{{ include.post.slug }}/{% endcapture %}
|
|
3
3
|
{% else %}
|
|
4
4
|
{% capture href %}{{ include.post.url }}{% endcapture %}
|
|
5
5
|
{% endif %}
|
|
@@ -223,6 +223,31 @@
|
|
|
223
223
|
|
|
224
224
|
// Blocks
|
|
225
225
|
|
|
226
|
+
.admonitionblock {
|
|
227
|
+
> table {
|
|
228
|
+
display: flex;
|
|
229
|
+
flex-flow: column nowrap;
|
|
230
|
+
|
|
231
|
+
tbody {
|
|
232
|
+
display: flex;
|
|
233
|
+
flex-flow: column nowrap;
|
|
234
|
+
|
|
235
|
+
tr {
|
|
236
|
+
display: flex;
|
|
237
|
+
flex-flow: column nowrap;
|
|
238
|
+
|
|
239
|
+
@media screen and (min-width: $bigscreen-breakpoint) {
|
|
240
|
+
flex-flow: row nowrap;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
td.content {
|
|
244
|
+
overflow-x: hidden;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
226
251
|
.admonitionblock,
|
|
227
252
|
.listingblock {
|
|
228
253
|
margin: 1em 0;
|
|
@@ -281,14 +306,17 @@
|
|
|
281
306
|
}
|
|
282
307
|
|
|
283
308
|
.admonitionblock {
|
|
284
|
-
overflow-x: scroll;
|
|
285
309
|
padding-left: .5em;
|
|
286
310
|
background-color: rgba(black, 0.03);
|
|
287
311
|
|
|
288
|
-
|
|
312
|
+
@media screen and (min-width: $bigscreen-breakpoint) {
|
|
313
|
+
overflow-x: scroll;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
> table:first-child {
|
|
289
317
|
margin-top: 0;
|
|
290
318
|
}
|
|
291
|
-
table:last-child {
|
|
319
|
+
> table:last-child {
|
|
292
320
|
margin-bottom: 0;
|
|
293
321
|
}
|
|
294
322
|
|
|
@@ -556,6 +584,11 @@
|
|
|
556
584
|
overflow-y: auto;
|
|
557
585
|
bottom: 0;
|
|
558
586
|
right: 0;
|
|
587
|
+
left: 0;
|
|
588
|
+
|
|
589
|
+
@media screen and (min-width: $bigscreen-breakpoint) {
|
|
590
|
+
left: unset;
|
|
591
|
+
}
|
|
559
592
|
|
|
560
593
|
padding: .75em $sidePadding;
|
|
561
594
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-open-project
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.17
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-06-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - '='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 2.0.
|
|
75
|
+
version: 2.0.17
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - '='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 2.0.
|
|
82
|
+
version: 2.0.17
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: bundler
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|