moving 0.3.0 → 0.3.1
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/head.html +4 -4
- data/_layouts/about.html +16 -18
- data/_sass/moving/_layout.scss +31 -25
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a65c33564a9e22f8f5b1a54e1ee3e24cecf5aee732213156867569454337345
|
|
4
|
+
data.tar.gz: 62229992c8696c0ef694f57a3a910af1c53391419be593aa1ef296c81c6c1a73
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb1f8331dd9e6ee1b18e12985bd5b37752961f27f0cc073961de7ac7c492c448f49e1b2be9bce26fd758669ca70917d3bc46c8aa465816ea19d1e65d28d31bbe
|
|
7
|
+
data.tar.gz: 367243ca7a2ff5fc3cafa6f2dbf6bdec4f3f9fb23dd75251271728acc88b0631acd22018c3543d8ec5e625fed48c3f98d4bc1bef2ee39b0415596ee3b3a2960a
|
data/_includes/head.html
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
5
5
|
{%- seo title=false -%}
|
|
6
6
|
<link rel="stylesheet" href="{{ site.url }}/assets/css/main.css" />
|
|
7
|
-
<link rel="shortcut icon" type="image/x-icon" href="{{ site.favicon }}" />
|
|
7
|
+
<link rel="shortcut icon" type="image/x-icon" href="/{{ site.favicon }}" />
|
|
8
8
|
<link rel="stylesheet" href="{{ site.url }}/assets/css/agate.css" />
|
|
9
|
-
<script src="
|
|
9
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.4.0/highlight.min.js"></script>
|
|
10
10
|
<script>
|
|
11
11
|
hljs.initHighlightingOnLoad();
|
|
12
12
|
</script>
|
|
13
13
|
{%- feed_meta -%}
|
|
14
14
|
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
|
15
|
-
|
|
15
|
+
{%- include google-analytics.html -%}
|
|
16
16
|
{%- endif -%}
|
|
17
|
-
</head>
|
|
17
|
+
</head>
|
data/_layouts/about.html
CHANGED
|
@@ -4,30 +4,28 @@ layout: default
|
|
|
4
4
|
|
|
5
5
|
<div class="about-page">
|
|
6
6
|
<head>
|
|
7
|
-
|
|
7
|
+
<title>{{ site.author }}</title>
|
|
8
8
|
</head>
|
|
9
9
|
<div class="post-back">
|
|
10
10
|
<a class="black-link" href="{{ site.url | relative_url }}"> ← {{ site.moving.back_to }} </a>
|
|
11
11
|
</div>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
<img class="about-avatar" src="{{ site.moving.avatar_url }}"/>
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
{%- if site.moving.about_you -%}
|
|
24
|
-
<p class="about-info">
|
|
12
|
+
<div class="about-header">
|
|
13
|
+
{%- if site.moving.avatar_url -%}
|
|
14
|
+
<img class="about-avatar" src="{{ site.moving.avatar_url }}" />
|
|
15
|
+
{%- endif -%} {%- if site.author -%}
|
|
16
|
+
<div class="about-info">
|
|
17
|
+
<div class="about-your-name">
|
|
18
|
+
{{ site.author | escape }}
|
|
19
|
+
</div>
|
|
20
|
+
{%- endif -%} {%- if site.moving.about_you -%}
|
|
21
|
+
<p class="about-description">
|
|
25
22
|
{{ site.moving.about_you | escape }}
|
|
26
|
-
|
|
27
|
-
|
|
23
|
+
</p>
|
|
24
|
+
{%- endif -%} {%- include social.html -%}
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
28
27
|
|
|
29
|
-
{%- include social.html -%}
|
|
30
28
|
<div class="about-content e-content" itemprop="articleBody">
|
|
31
|
-
|
|
29
|
+
{{ content }}
|
|
32
30
|
</div>
|
|
33
31
|
</div>
|
data/_sass/moving/_layout.scss
CHANGED
|
@@ -282,7 +282,7 @@
|
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
.social-media-list {
|
|
285
|
-
margin-top: -
|
|
285
|
+
margin-top: -1rem;
|
|
286
286
|
display: flex;
|
|
287
287
|
@include relative-font-size(1);
|
|
288
288
|
li {
|
|
@@ -308,33 +308,39 @@
|
|
|
308
308
|
*/
|
|
309
309
|
.about-page {
|
|
310
310
|
display: inline-block;
|
|
311
|
-
}
|
|
312
311
|
|
|
313
|
-
.about-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
312
|
+
.about-header {
|
|
313
|
+
display: flex;
|
|
314
|
+
flex-direction: row;
|
|
315
|
+
flex-wrap: wrap;
|
|
316
|
+
|
|
317
|
+
.about-avatar {
|
|
318
|
+
padding: 1px;
|
|
319
|
+
border: 1px solid $grey-color-light;
|
|
320
|
+
width: 10rem;
|
|
321
|
+
height: 10rem;
|
|
322
|
+
margin: 0 2rem 0 0;
|
|
323
|
+
}
|
|
319
324
|
|
|
320
|
-
.about-info {
|
|
321
|
-
|
|
322
|
-
color: lighten($text-color, 25%);
|
|
323
|
-
}
|
|
325
|
+
.about-info {
|
|
326
|
+
align-self: center;
|
|
324
327
|
|
|
325
|
-
.about-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
328
|
+
.about-your-name {
|
|
329
|
+
display: flex;
|
|
330
|
+
flex-direction: row;
|
|
331
|
+
margin-top: 1rem;
|
|
332
|
+
@include relative-font-size(1.5);
|
|
333
|
+
}
|
|
329
334
|
|
|
330
|
-
.about-
|
|
331
|
-
|
|
332
|
-
|
|
335
|
+
.about-description {
|
|
336
|
+
margin-top: -0.6rem;
|
|
337
|
+
@include relative-font-size(1);
|
|
338
|
+
color: lighten($text-color, 25%);
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
}
|
|
333
342
|
|
|
334
|
-
.about-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
width: 15rem;
|
|
338
|
-
height: 15rem;
|
|
339
|
-
margin-bottom: -5px;
|
|
343
|
+
.about-content {
|
|
344
|
+
margin-top: 2rem;
|
|
345
|
+
}
|
|
340
346
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: moving
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- huangyz0918
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-08-
|
|
11
|
+
date: 2019-08-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|