taletype 0.1.16 → 0.1.18
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/_includes/footer.html +3 -0
- data/_layouts/post.html +8 -2
- data/_sass/tale/_post.scss +21 -1
- data/_sass/type/_mq.scss +2 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25ddd763cb260868206e44e483f32b34d9ca8550f36084349f8fafedcff7acde
|
4
|
+
data.tar.gz: e4a7c6bed03b902da92fea498fc750058c4190efdea0d08d663063e64990d210
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6222897366a734a257b8479e0e27d747574696a66c7db3dfdd825a6fb24d46119931407d5794fc2727b4a99abbfa7c5f2943ad888465131222e29086d7fe2a29
|
7
|
+
data.tar.gz: d812f08375ddb5f4edfaea38507707efd0176374d0fc8eb0868b9ee0793c455dea95ec632d1ebaed32780473028f3e0d1e023692877854affde7a8fbe5a52c02
|
data/_includes/footer.html
CHANGED
@@ -39,4 +39,7 @@
|
|
39
39
|
{% include cnzz_statistic.html %}
|
40
40
|
{% endif %}
|
41
41
|
|
42
|
+
<!-- crisp.chat -->
|
43
|
+
<script type="text/javascript">window.$crisp=[];window.CRISP_WEBSITE_ID="1eac894a-03b9-4eab-9a03-0064d6a027b3";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script>
|
44
|
+
|
42
45
|
</footer>
|
data/_layouts/post.html
CHANGED
@@ -23,9 +23,15 @@ layout: default
|
|
23
23
|
|
24
24
|
<br />
|
25
25
|
|
26
|
-
<div
|
26
|
+
<div class="extra-info">
|
27
|
+
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="知识共享许可协议" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png" /></a>
|
28
|
+
本文采用<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/deed.zh">「CC BY-SA 4.0」</a>知识共享许可协议,如果还喜欢其他文章,
|
27
29
|
欢迎<a href="/subscription">订阅“胡涂说”博客</a>。
|
28
|
-
|
30
|
+
|
31
|
+
<figure>
|
32
|
+
<img src="{{site.wechat_official}}" width="150" alt="公众号">
|
33
|
+
<figcaption>微信公众号同步更新,欢迎关注😊</figcaption>
|
34
|
+
</figure>
|
29
35
|
</div>
|
30
36
|
|
31
37
|
{% include comments.html %}
|
data/_sass/tale/_post.scss
CHANGED
@@ -102,4 +102,24 @@
|
|
102
102
|
@include mq($until: tablet) {
|
103
103
|
margin-bottom: $line-height-medium - half(quarter($line-height-medium));
|
104
104
|
}
|
105
|
-
}
|
105
|
+
}
|
106
|
+
|
107
|
+
.extra-info {
|
108
|
+
|
109
|
+
figure {
|
110
|
+
display: block;
|
111
|
+
margin: auto;
|
112
|
+
|
113
|
+
img {
|
114
|
+
display: block;
|
115
|
+
margin: auto;
|
116
|
+
text-align: center;
|
117
|
+
}
|
118
|
+
|
119
|
+
figcaption {
|
120
|
+
text-align: center;
|
121
|
+
font-size: 14px;
|
122
|
+
}
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
data/_sass/type/_mq.scss
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
@use 'sass:math';
|
1
2
|
@charset "UTF-8"; // Fixes an issue where Ruby locale is not set properly
|
2
3
|
// See https://github.com/sass-mq/sass-mq/pull/10
|
3
4
|
|
@@ -92,7 +93,7 @@ $mq-media-type: all !default;
|
|
92
93
|
} @else if unit($px) == em {
|
93
94
|
@return $px;
|
94
95
|
}
|
95
|
-
@return ($px
|
96
|
+
@return math.div($px, $base-font-size) * 1em;
|
96
97
|
}
|
97
98
|
|
98
99
|
/// Get a breakpoint's width
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: taletype
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- hutusi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
166
|
- !ruby/object:Gem::Version
|
167
167
|
version: '0'
|
168
168
|
requirements: []
|
169
|
-
rubygems_version: 3.
|
169
|
+
rubygems_version: 3.3.7
|
170
170
|
signing_key:
|
171
171
|
specification_version: 4
|
172
172
|
summary: TaleType(Tale redistributed) is a minimal Jekyll theme curated for [hutusi.com](https://hutusi.com/).
|