plaintro 0.1.0 → 0.1.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/README.md +2 -0
- data/_config.yml +1 -1
- data/_includes/head.html +2 -2
- data/_includes/header.html +1 -1
- data/_includes/portfolio-section.html +1 -1
- data/_includes/portfolio/project-a-description.md +1 -1
- data/_includes/topnav.html +2 -2
- data/_layouts/blog-archive.html +1 -1
- data/_layouts/blog.html +4 -4
- 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: d51aa0f350e5764e73215224e755ff3caaae01850bb8ff3b847650be3cf0edc1
|
|
4
|
+
data.tar.gz: 6d569e3e6806efc5b808952035afedd5f904f4021310a4e23e0899e91541cab7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57871cd8284307754f4cf141c49876e38dfe8a4e558e2650c26351e72108346d3d85a6349318667cd733fe24ff9e3d671169556da9164425c80d9d3f9a3c2fa2
|
|
7
|
+
data.tar.gz: ca95e4d20888acfbcc70ea611fa752c1365e993c832b58931d1ae65e07ae109ab16a47c8b3aba6c44221c52aa37a86ec3db9e74a67848c7c070f0c61c7ff742e
|
data/README.md
CHANGED
|
@@ -33,6 +33,8 @@ Or install it yourself as:
|
|
|
33
33
|
|
|
34
34
|
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
|
35
35
|
|
|
36
|
+
TODO: Describe how to use Blog/Portfolio/Resume pages.
|
|
37
|
+
|
|
36
38
|
## Contributing
|
|
37
39
|
|
|
38
40
|
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
data/_config.yml
CHANGED
data/_includes/head.html
CHANGED
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
<!-------------------------------------
|
|
23
23
|
Link stylesheet css
|
|
24
24
|
-------------------------------------->
|
|
25
|
-
<link rel="stylesheet" href="/assets/css/stylesheet.css">
|
|
25
|
+
<link rel="stylesheet" href="{{ '/assets/css/stylesheet.css' | relative_url }}">
|
|
26
26
|
|
|
27
27
|
<!-------------------------------------
|
|
28
28
|
Link font css
|
|
29
29
|
-------------------------------------->
|
|
30
|
-
<link rel="stylesheet" href="/assets/font/style.css">
|
|
30
|
+
<link rel="stylesheet" href="{{ '/assets/font/style.css' | relative_url }}">
|
data/_includes/header.html
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div class="site-portfolio-section">
|
|
2
2
|
<div class="site-portfolio-thumbnail">
|
|
3
|
-
<a href="{{ include.url }}"><img src="{{ include.image }}"></
|
|
3
|
+
<a href="{{ include.url | relative_url }}"><img src="{{ include.image | relative_url }}"></a>
|
|
4
4
|
</div>
|
|
5
5
|
<div class="site-portfolio-content">
|
|
6
6
|
{% capture description %}
|
data/_includes/topnav.html
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
<nav class="site-menu">
|
|
3
3
|
{% for item in site.menu %}
|
|
4
4
|
{% if item == site.menu.last %}
|
|
5
|
-
<a href="{{ item.url }}">{{ item.name }}</a>
|
|
5
|
+
<a href="{{ item.url | relative_url }}">{{ item.name }}</a>
|
|
6
6
|
{% else %}
|
|
7
|
-
<a href="{{ item.url }}">{{ item.name }}</a> |
|
|
7
|
+
<a href="{{ item.url | relative_url }}">{{ item.name }}</a> |
|
|
8
8
|
{% endif %}
|
|
9
9
|
{% endfor %}
|
|
10
10
|
</nav>
|
data/_layouts/blog-archive.html
CHANGED
|
@@ -24,6 +24,6 @@ layout: default
|
|
|
24
24
|
{% endif %}
|
|
25
25
|
|
|
26
26
|
<p class="site-blog-archive">
|
|
27
|
-
{{ post.date | date: "%b %-d" }} | <a href="{{ post.url }}">{{ post.title }}</a>
|
|
27
|
+
{{ post.date | date: "%b %-d" }} | <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
|
28
28
|
</p>
|
|
29
29
|
{% endfor %}
|
data/_layouts/blog.html
CHANGED
|
@@ -7,7 +7,7 @@ layout: default
|
|
|
7
7
|
Blog
|
|
8
8
|
</nav>
|
|
9
9
|
<nav class="site-blog-title-right">
|
|
10
|
-
<a href="{{ site.blog.archive }}">Archive</a> | <a href="{{ site.blog.feed }}">Feed</a>
|
|
10
|
+
<a href="{{ site.blog.archive | relative_url }}">Archive</a> | <a href="{{ site.blog.feed | relative_url }}">Feed</a>
|
|
11
11
|
</nav>
|
|
12
12
|
</h1>
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@ layout: default
|
|
|
15
15
|
{% assign posts = paginator.posts %}
|
|
16
16
|
{% for post in posts %}
|
|
17
17
|
<h1 class="site-blog-post-title">
|
|
18
|
-
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
18
|
+
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
|
|
19
19
|
</h1>
|
|
20
20
|
<p class="site-post-metadata">
|
|
21
21
|
{{ post.date | date: "%b %-d, %Y" }} | by {{ post.author }} | Tags:
|
|
@@ -39,7 +39,7 @@ layout: default
|
|
|
39
39
|
|
|
40
40
|
{% if paginator.previous_page %}
|
|
41
41
|
<nav class="site-blog-previous">
|
|
42
|
-
<a href="{{ paginator.previous_page_path }}">
|
|
42
|
+
<a href="{{ paginator.previous_page_path | relative_url }}">
|
|
43
43
|
≪ Newer Posts
|
|
44
44
|
</a>
|
|
45
45
|
</nav>
|
|
@@ -47,7 +47,7 @@ layout: default
|
|
|
47
47
|
|
|
48
48
|
{% if paginator.next_page %}
|
|
49
49
|
<nav class="site-blog-next">
|
|
50
|
-
<a href="{{ paginator.next_page_path }}">
|
|
50
|
+
<a href="{{ paginator.next_page_path | relative_url }}">
|
|
51
51
|
Older Posts ≫
|
|
52
52
|
</a>
|
|
53
53
|
</nav>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: plaintro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chia-Yu Chou
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-07-
|
|
11
|
+
date: 2021-07-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -133,5 +133,5 @@ requirements: []
|
|
|
133
133
|
rubygems_version: 3.2.22
|
|
134
134
|
signing_key:
|
|
135
135
|
specification_version: 4
|
|
136
|
-
summary: Jekyll theme designed for personal
|
|
136
|
+
summary: Jekyll theme designed for personal websites.
|
|
137
137
|
test_files: []
|