futuro 0.6.6 → 0.6.7
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e34e6978a882e81550684a2835487a473a4d49ab027426cecf08a305ffa9a24c
|
|
4
|
+
data.tar.gz: 68fabdf1db0732d430570120a1d738ff4c435b3ac1ee8919ba153ce9da4a40d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b28ff85edc0c701368e07f59961bd28cf609e509d2f20734c053a3556735659d2bfd0fc52ab9a26958aaea1db6d62fb8b4043be2f177c565cb6c968a98b1d81
|
|
7
|
+
data.tar.gz: 5d289a5332c2eb2afcf7df5eb49029f615b3def72ba9930731fd1a4aed2a9600eb12e295d9c2477c2517f5f3c3486fbd06b86da59327b4a9f50c2cae174c23bf
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
{% if page.live %}
|
|
20
20
|
|
|
21
21
|
<div class="block browse-lnk">
|
|
22
|
-
<a href="{{ url }}" class="lnk browse-book book-{{ book }}">{{ title }}</a>
|
|
22
|
+
<a href="{{ url }}" class="lnk browse-book book-{{ book }}">{{ title | truncate: 14 }}</a>
|
|
23
23
|
</div>
|
|
24
24
|
|
|
25
25
|
{% else %}
|
|
26
26
|
|
|
27
27
|
<div class="block browse-lnk">
|
|
28
|
-
<a href="/" class="lnk browse-book book-{{ book }} draft">{{ title }}</a>
|
|
28
|
+
<a href="/" class="lnk browse-book book-{{ book }} draft">{{ title | truncate: 14 }}</a>
|
|
29
29
|
</div>
|
|
30
30
|
|
|
31
31
|
{% endif %}
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
{% assign weight = page.weight | slice: 0,3 %}
|
|
23
23
|
|
|
24
24
|
<div class="block browse-lnk">
|
|
25
|
-
<a href="{{ page.url | replace: '/index.html','' }}" class="lnk browse-chapter book-{{ book }} chapter-{{ chapter }}">{{ weight }} {{ page.chapter }}</a>
|
|
25
|
+
<a href="{{ page.url | replace: '/index.html','' }}" class="lnk browse-chapter book-{{ book }} chapter-{{ chapter }}">{{ weight }} {{ page.chapter | truncate: 14 }}</a>
|
|
26
26
|
</div>
|
|
27
27
|
|
|
28
28
|
{% endif %}
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
{% assign weight = page.weight | slice: 0,5 %}
|
|
38
38
|
|
|
39
39
|
<div class="block browse-lnk">
|
|
40
|
-
<a href="{{ page.url | replace: '.html','' }}" class="lnk browse-page chapter-{{ chapter }} title-{{ title }}">{{ weight }} {{ page.title }}</a>
|
|
40
|
+
<a href="{{ page.url | replace: '.html','' }}" class="lnk browse-page chapter-{{ chapter }} title-{{ title }}">{{ weight }} {{ page.title | truncate: 14 }}</a>
|
|
41
41
|
</div>
|
|
42
42
|
|
|
43
43
|
{% endunless %}
|
data/_sass/_nav.scss
CHANGED
|
@@ -13,9 +13,14 @@
|
|
|
13
13
|
align-content: center;
|
|
14
14
|
grid-gap: 18px;
|
|
15
15
|
display: grid;
|
|
16
|
+
|
|
17
|
+
@media#{$max767} {
|
|
18
|
+
display: none;
|
|
19
|
+
}
|
|
16
20
|
}
|
|
17
21
|
|
|
18
22
|
.nav.main {
|
|
23
|
+
justify-content: center;
|
|
19
24
|
grid-auto-flow: column;
|
|
20
25
|
text-align: center;
|
|
21
26
|
font-size: 21px;
|
|
@@ -28,4 +33,8 @@
|
|
|
28
33
|
align-content: center;
|
|
29
34
|
grid-gap: 18px;
|
|
30
35
|
display: grid;
|
|
36
|
+
|
|
37
|
+
@media#{$max767} {
|
|
38
|
+
display: none;
|
|
39
|
+
}
|
|
31
40
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: futuro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Heading
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-03-
|
|
11
|
+
date: 2020-03-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|