willamette 0.10.3 → 0.10.4

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: b0bcd46b80a071f7681c3d820eb1d8c140023ff84086addeeb0f88ba656b331f
4
- data.tar.gz: e47d690c416da83657e5f6d4cc94efb218ce2d59b7c1904399b8340839daef43
3
+ metadata.gz: 10a8351e25e910af9b6f268466430267fdc3f38b3dbadcd13fa9fdb79cc2bfac
4
+ data.tar.gz: c247dc2e455333ac230cf2f0ac38503838094c6d43fc39098f32e7de7f4c4f1b
5
5
  SHA512:
6
- metadata.gz: d87fc4950a182c47199daaafc81bef6c36bf59d566af6e9cb8504f95faac777f02d2e7b09d1bb108512742fc4450c52ed176b72ec531cb3b2fd041e55f509a51
7
- data.tar.gz: e6265b36eef75afd42d741a23e8b6e54f70f77257f9397aec0b336dcdbb9b482ab2a1829cbe2239f7d5fd5d6e00e9c61729fb0b444eee4832c02f0eea41b3c85
6
+ metadata.gz: 577dd3f2a721d605514420d4f11b99012d80c3da3b5062feddd2d6780335bfded3f3b080d75f5c0c0abc5b346a3c4ea67bc4b36e7b548f2df9918673724acc20
7
+ data.tar.gz: 144290868c0a83939dbb6e39ec2affa175fc911dc0070dfd7a4d82d6da76133693d267ce936e33767cca59da4a3c949cc2405623e5f367fa120d44660b2ee6f9
data/CHANGELOG.md CHANGED
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  - ...
11
11
 
12
+ ## [0.10.4] - 2026-05-26
13
+
14
+ - Improve display of pagination links
15
+
12
16
  ## [0.10.3] - 2026-05-25
13
17
 
14
18
  - Fixes for the display of post summaries
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- willamette (0.10.3)
4
+ willamette (0.10.4)
5
5
  bridgetown (>= 2.1, < 3.0)
6
6
  nokolexbor (>= 0.6)
7
7
 
@@ -44,7 +44,7 @@ create_file "src/_layouts/post.erb" do <<~ERB
44
44
  image_caption = data.image.is_a?(String) ? nil : data.image.caption
45
45
  %>
46
46
  <figure class="<%= data.image_bleed ? "inline-bleed" : "" %>">
47
- <img src="<%= image_path %>" alt="" />
47
+ <img src="<%= image_path %>" alt="<%= image_alt %>" />
48
48
  <% if image_caption %>
49
49
  <figcaption><%= markdownify image_caption %></figcaption>
50
50
  <% end %>
@@ -1,12 +1,12 @@
1
1
  <ul class="pagination" data-pagefind-ignore>
2
2
  <li>
3
3
  <% if paginator.previous_page %>
4
- <a href="<%= paginator.previous_page_path %>"><wa-icon label="<%= t "labels.previous" %>" name="circle-chevron-left"></wa-icon> <%= t "content.posts.newer_posts" %></a>
4
+ <a href="<%= paginator.previous_page_path %>"><wa-icon label="<%= t "labels.previous" %>" name="circle-chevron-left"></wa-icon>&nbsp;<%= t "content.posts.newer_posts" %></a>
5
5
  <% end %>
6
6
  </li>
7
7
  <li>
8
8
  <% if paginator.next_page %>
9
- <a href="<%= paginator.next_page_path %>"><%= t "content.posts.more_posts" %> <wa-icon label="<%= t "labels.next" %>" name="circle-chevron-right"></wa-icon></a>
9
+ <a href="<%= paginator.next_page_path %>"><%= t "content.posts.more_posts" %>&nbsp;<wa-icon label="<%= t "labels.next" %>" name="circle-chevron-right"></wa-icon></a>
10
10
  <% end %>
11
11
  </li>
12
12
  </ul>
@@ -1,12 +1,12 @@
1
1
  <ul class="pagination" data-pagefind-ignore>
2
2
  <li>
3
3
  <% if resource.previous_resource %>
4
- <a href="<%= resource.previous_resource.relative_url %>"><wa-icon label="<%= t "labels.previous" %>" name="circle-chevron-left"></wa-icon> <%= resource.previous_resource.data.title %></a>
4
+ <a href="<%= resource.previous_resource.relative_url %>"><wa-icon label="<%= t "labels.previous" %>" name="circle-chevron-left"></wa-icon>&nbsp;<%= resource.previous_resource.data.title %></a>
5
5
  <% end %>
6
6
  </li>
7
7
  <li>
8
8
  <% if resource.next_resource %>
9
- <a href="<%= resource.next_resource.relative_url %>"><%= resource.next_resource.data.title %> <wa-icon label="<%= t "labels.next" %>" name="circle-chevron-right"></wa-icon></a>
9
+ <a href="<%= resource.next_resource.relative_url %>"><%= resource.next_resource.data.title %>&nbsp;<wa-icon label="<%= t "labels.next" %>" name="circle-chevron-right"></wa-icon></a>
10
10
  <% end %>
11
11
  </li>
12
12
  </ul>
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Willamette
4
- VERSION = "0.10.3"
4
+ VERSION = "0.10.4"
5
5
  end
data/package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "willamette",
3
- "version": "0.10.3",
3
+ "version": "0.10.4",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "willamette",
9
- "version": "0.10.3",
9
+ "version": "0.10.4",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@awesome.me/webawesome": ">=3.6.0",
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "willamette",
3
- "version": "0.10.3",
3
+ "version": "0.10.4",
4
4
  "main": "frontend/javascript/index.js",
5
5
  "repository": {
6
6
  "type": "git",
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: willamette
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.3
4
+ version: 0.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bridgetown Team
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2026-05-25 00:00:00.000000000 Z
10
+ date: 2026-05-26 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bridgetown