plaintro 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1fdee0a2656766630629e9455a7551f4b4546dabd814ab8d95ff1ec85d5db84
4
- data.tar.gz: d4673e31b30d947b9590efafba2ff6cb4ef9d87e8023294b18f590d36160cc2f
3
+ metadata.gz: d51aa0f350e5764e73215224e755ff3caaae01850bb8ff3b847650be3cf0edc1
4
+ data.tar.gz: 6d569e3e6806efc5b808952035afedd5f904f4021310a4e23e0899e91541cab7
5
5
  SHA512:
6
- metadata.gz: 96009b1f65fafaaa0ee63726211ba204ad1c2d9816dc9d220ff33fe4992b678dcfc716df96a6ff93c3a056234f8da10777893c9e61f67f7a83b8ef94ea5ec006
7
- data.tar.gz: 8c4efe68684e82b70015175198aca721e2d41d326f6d617c2d4986b466f7b762b2441b16be79fad6daed7ea499e893b145dc5ed845b61e4a25f972d2be98d205
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
@@ -24,7 +24,7 @@ blog:
24
24
  feed: '/feed.xml'
25
25
 
26
26
  # Default website url
27
- url: https://xh5a5n6k6.github.io/plaintro
27
+ url: https://xh5a5n6k6.github.io
28
28
  # Page title will link to defualt_url
29
29
  default_url: '/'
30
30
 
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 }}">
@@ -1,3 +1,3 @@
1
1
  <div class="site-header-content">
2
- <a href="{{ site.default_url }}">{{ site.title }}</a>
2
+ <a href="{{ site.default_url | relative_url }}">{{ site.title }}</a>
3
3
  </div>
@@ -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 }}"></img></a>
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 %}
@@ -1,5 +1,5 @@
1
1
 
2
- # [Project A with h1 Tag](/portfolio/project-a.html)
2
+ # [Project A with h1 Tag]({{ '/portfolio/project-a.html' | relative_url }})
3
3
 
4
4
  Describe what Project A is.
5
5
 
@@ -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>
@@ -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.0
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-25 00:00:00.000000000 Z
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 website.
136
+ summary: Jekyll theme designed for personal websites.
137
137
  test_files: []