arrow-jekyll-theme 0.1.1 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 151bb8e10189c88e94e834ba89de8b73d08119e494e8e2f91efd9da8ffa5edb3
4
- data.tar.gz: fee13e4696332c425a55c2844b462ab1ee87f7c687b76acb9b1810400e944fe6
3
+ metadata.gz: dc551864eaadae739b31a7b9c85a1d8a29cdf73dd63e81cc217d07cf59b2201f
4
+ data.tar.gz: f81663a1c0ca30bb7e4b6b9abdf85c92c52e7d2b4ba086297f02289c42c16a55
5
5
  SHA512:
6
- metadata.gz: dbe27a54785d00b5e19db6199d6df8c7cb7d854d09c54d268b4b989c23e5d13c62743220657f00fccf68d3f47dc066f37e04264f8c29bb1851b652dfa5f7548a
7
- data.tar.gz: dedadcd457cf589225245c49ad0d670241bf753df6bf13fd17cf01c1ebfe91a2230914f6a872dfcfa95bb0025acd31323bbf5d5bac8d444ea95a7f7dd212a6cb
6
+ metadata.gz: 05d7605ab6d98d4c85d8cf61fc76655f5d3f6e11ae9dfd3aa48ea8ef4abac7d76e337c5c65cf9999300e013025c9c2d2aeeb7e2830ada41c4d94fbc50d27f560
7
+ data.tar.gz: 98521309b4dcea2bf663236339e6985d87b3f14d2193614c33c293dda4893f601339609d912cff91306bd6a5294784089e81335442558aae65c65df74edc8c17
data/Devlog.md CHANGED
@@ -94,4 +94,10 @@ I just published the gem to RubyGems [here](https://rubygems.org/gems/arrow-jeky
94
94
 
95
95
 
96
96
  <time class="timestamp--time">07:22 AM</time>
97
- I just noticed I forgot to update the link to the RSS feed. Fixing and pushing an update right now.
97
+ I just noticed I forgot to update the link to the RSS feed. Fixing and pushing an update right now.
98
+
99
+ <time class="timestamp--time">07:40 AM</time>
100
+ Updating relative_url links for Github Pages deployment.
101
+
102
+ <time class="timestamp--time">07:51 AM</time>
103
+ Looks like I have to temporarily remove the base_url when developing locally.
data/README.md CHANGED
@@ -4,6 +4,10 @@ Arrow is a text-first Jekyll theme featuring minimal CSS by relying on default b
4
4
 
5
5
  ![Screenshot](https://i.ibb.co/CQsKPk8/2025-01-23-06-37-08-localhost-4aee2ad31133.png)
6
6
 
7
+ ## Demo site
8
+
9
+ You can check out a demo of the site [here](https://cspablocortez.github.io/arrow-jekyll-theme/)
10
+
7
11
  ## Installation
8
12
 
9
13
  Add this line to your Jekyll site's `Gemfile`:
@@ -1,11 +1,11 @@
1
1
  <footer role="contentinfo">
2
2
  <h4>Menu</h4>
3
3
  <ul id="menu">
4
- <li><a href="/">Home</a></li>
5
- <li><a href="/posts">Posts</a></li>
6
- <li><a href="/about">About</a></li>
7
- <li><a href="/devlog">Devlog</a></li>
8
- <li><a href="/feed.xml">RSS</a></li>
4
+ <li><a href="{{ '/' | relative_url }}">Home</a></li>
5
+ <li><a href="{{ '/posts' | relative_url }}">Posts</a></li>
6
+ <li><a href="{{ '/about' | relative_url }}">About</a></li>
7
+ <li><a href="{{ '/devlog' | relative_url }}">Devlog</a></li>
8
+ <li><a href="{{ '/feed.xml' | relative_url }}">RSS</a></li>
9
9
  </ul>
10
10
  <small>
11
11
  The <a href="https://github.com/cspablocortez/arrow-jekyll-theme">code for this project</a>
@@ -1,4 +1,4 @@
1
1
  <nav id="top">
2
- <a href="/">Home</a>
2
+ <a href="{{ '/' | relative_url }}">Home</a>
3
3
  <a href="#menu">Menu &darr;</a>
4
4
  </nav>
@@ -7,9 +7,9 @@
7
7
 
8
8
  <link rel="icon" href="data:,">
9
9
  <title>{{ site.title }} | {{ page.title }}</title>
10
- <link rel="stylesheet" href="/assets/css/base.css">
11
- <link rel="stylesheet" href="/assets/css/article.css">
12
- <link rel="stylesheet" href="/assets/css/monokai.css">
10
+ <link rel="stylesheet" href="{{ '/assets/css/base.css' | relative_url }}">
11
+ <link rel="stylesheet" href="{{ '/assets/css/article.css' | relative_url }}">
12
+ <link rel="stylesheet" href="{{ '/assets/css/monokai.css' | relative_url }}">
13
13
 
14
14
  <meta name="theme-color" content="#FFF" media="(prefers-color-scheme: light)">
15
15
  <meta name="theme-color" content="#111" media="(prefers-color-scheme: dark)">
data/index.md CHANGED
@@ -13,11 +13,11 @@ Arrow is a text-first Jekyll theme available as a Ruby gem. It features minimal
13
13
  {% for post in site.posts limit:3 %}
14
14
  <li class="feed-item">
15
15
  <p class="feed-item__date"><time>{{ post.date | date: "%Y-%m-%d"}}</time></p>
16
- <h1 class="feed-item__title"><a href="{{ post.url }}">{{ post.title }}</a></h1>
16
+ <h1 class="feed-item__title"><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h1>
17
17
  </li>
18
18
  {% endfor %}
19
19
 
20
- <p style="margin-top: 1.5rem;"><a href="/posts">View all posts →</a></p>
20
+ <p style="margin-top: 1.5rem;"><a href="{{ '/posts' | relative_url }}">View all posts →</a></p>
21
21
  </ul>
22
22
 
23
23
  ## Features
data/posts.md CHANGED
@@ -8,7 +8,7 @@ permalink: posts
8
8
  {% for post in site.posts %}
9
9
  <li class="feed-item">
10
10
  <p class="feed-item__date"><time>{{ post.date | date: "%Y-%m-%d"}}</time></p>
11
- <h1 class="feed-item__title"><a href="{{ post.url }}">{{ post.title }}</a></h1>
11
+ <h1 class="feed-item__title"><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h1>
12
12
  </li>
13
13
  {% endfor %}
14
14
  </ul>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arrow-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pablo E. Cortez