arco 0.8.0 → 0.8.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/sidebar.html +9 -25
- data/_layouts/post-list.html +2 -6
- data/_layouts/post.html +1 -1
- data/_sass/post-list.scss +1 -11
- data/_sass/post.scss +2 -5
- 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: 1af24c65938ba80784838ec1243ada81f4a4306d96fa8d23f6e73e65cee7a9ac
|
|
4
|
+
data.tar.gz: 030f948cd00b67501251307bd9d973a5a1b27762ac7c423db4cf04d733e065e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3442699460ab9c6e777dfe59881a75928ce98c7c17ab2b9315986748349fc27445be9fa47e1797b396e12de296350f5af646294985aff71259139408c2b92936
|
|
7
|
+
data.tar.gz: 48d9683e05f2ce1ef59d1cdecb7bd3e2c12c62030d46b737d396f2ecba274681d5e87b137e1768e8b27f39b747ff62bebe1bb599eae79a76475e3d84a779bac3
|
data/_includes/sidebar.html
CHANGED
|
@@ -17,30 +17,14 @@
|
|
|
17
17
|
</div>
|
|
18
18
|
</div>
|
|
19
19
|
<div class="sidebar-links">
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
/
|
|
28
|
-
|
|
29
|
-
ongoing
|
|
30
|
-
{% else %}
|
|
31
|
-
<a href="{{ "/projects/ongoing" }}" class="fade-onclick">ongoing</a>
|
|
32
|
-
{% endif %}
|
|
33
|
-
</div>
|
|
34
|
-
<div class="sidebar-links-bottom">
|
|
35
|
-
{% if site.github_url %}
|
|
36
|
-
<a href="{{ site.github_url }}">github</a>
|
|
37
|
-
{% endif %}
|
|
38
|
-
{% if site.github_url and site.resume %}
|
|
39
|
-
/
|
|
40
|
-
{% endif %}
|
|
41
|
-
{% if site.resume %}
|
|
42
|
-
<a href="{{ "/resume" }}" class="fade-onclick">resume</a>
|
|
43
|
-
{% endif %}
|
|
44
|
-
</div>
|
|
20
|
+
{% if site.github_url %}
|
|
21
|
+
<a href="{{ site.github_url }}">github</a>
|
|
22
|
+
{% endif %}
|
|
23
|
+
{% if site.github_url and site.resume %}
|
|
24
|
+
/
|
|
25
|
+
{% endif %}
|
|
26
|
+
{% if site.resume %}
|
|
27
|
+
<a href="{{ "/resume" }}" class="fade-onclick">resume</a>
|
|
28
|
+
{% endif %}
|
|
45
29
|
</div>
|
|
46
30
|
</section>
|
data/_layouts/post-list.html
CHANGED
|
@@ -5,8 +5,7 @@ layout: default
|
|
|
5
5
|
<section class="content">
|
|
6
6
|
<svg id="content-fader"></svg>
|
|
7
7
|
<div class="list-posts">
|
|
8
|
-
{%
|
|
9
|
-
{% for post in posts %}
|
|
8
|
+
{% for post in site.posts %}
|
|
10
9
|
<div class="list-post">
|
|
11
10
|
<a href="{{ post.url }}" class="fade-onclick">
|
|
12
11
|
<div class="list-post-link">
|
|
@@ -22,10 +21,7 @@ layout: default
|
|
|
22
21
|
<div class="list-post-footer">
|
|
23
22
|
<span class="list-post-date">{{ post.date | date_to_string}}</span>
|
|
24
23
|
·
|
|
25
|
-
<
|
|
26
|
-
<div class="list-post-tags">
|
|
27
|
-
{{ post.tags | join: ", "}}
|
|
28
|
-
</div>
|
|
24
|
+
<span class="list-post-tags">{{ post.tags | join: ", "}}</span>
|
|
29
25
|
</div>
|
|
30
26
|
</div>
|
|
31
27
|
{% endfor %}
|
data/_layouts/post.html
CHANGED
|
@@ -25,7 +25,7 @@ layout: default
|
|
|
25
25
|
<div class="post-header">
|
|
26
26
|
<span class="post-date">{{ page.date | date_to_string}}</span>
|
|
27
27
|
·
|
|
28
|
-
<
|
|
28
|
+
<span class="post-tags">{{ page.tags | join: ", "}}</span>
|
|
29
29
|
</div>
|
|
30
30
|
<div class="clickable-image"><a href="{{ page.images.top }}" style="max-width: 80%">
|
|
31
31
|
<img class="post-image" alt="{{ page.title }} | {{ page.description | truncate: 80 }}" src="{{ page.images.top }}" />
|
data/_sass/post-list.scss
CHANGED
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
.list-post-footer {
|
|
50
|
-
margin
|
|
50
|
+
margin: 0 1.4em;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
.list-post-date {
|
|
@@ -56,18 +56,8 @@
|
|
|
56
56
|
font-size: 0.9rem;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
.list-post-category {
|
|
60
|
-
font-weight: bold;
|
|
61
|
-
font-size: 0.9rem;
|
|
62
|
-
color: $primary-highlight;
|
|
63
|
-
&:hover, &:focus {
|
|
64
|
-
color: lighten($primary-highlight, 14%);
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
59
|
.list-post-tags {
|
|
69
60
|
font-weight: bold;
|
|
70
61
|
font-size: 0.9rem;
|
|
71
62
|
color: $tertiary-highlight;
|
|
72
|
-
margin-top: 0.4em;
|
|
73
63
|
}
|
data/_sass/post.scss
CHANGED
|
@@ -29,13 +29,10 @@
|
|
|
29
29
|
margin-top: 1em;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
.post-
|
|
32
|
+
.post-tags {
|
|
33
33
|
font-weight: bold;
|
|
34
34
|
font-size: 0.9rem;
|
|
35
|
-
color: $
|
|
36
|
-
&:hover, &:focus {
|
|
37
|
-
color: lighten($primary-highlight, 14%);
|
|
38
|
-
}
|
|
35
|
+
color: $tertiary-highlight;
|
|
39
36
|
}
|
|
40
37
|
|
|
41
38
|
.post-content {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: arco
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- meebuhs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-08-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|