Skip to content

Commit fc4db55

Browse files
authored
made-with: Sort alphabetically and keep sorted the json file too (#297)
Signed-off-by: Manuel Rego Casasnovas <rego@igalia.com>
1 parent dd25f45 commit fc4db55

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed

_data/madewith.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,10 @@
44
"projects":
55
[
66
{
7-
"key": "servoshell",
8-
"name": "servoshell",
9-
"link": "https://github.com/servo/servo/tree/main/ports/servoshell",
10-
"img": "/img/made-with/servoshell.png",
11-
"description": "First-party browser UI built with egui"
12-
},
13-
{
14-
"key": "verso",
15-
"name": "Verso",
16-
"link": "https://github.com/versotile-org/verso/",
17-
"img": "/img/made-with/verso.png",
18-
"description": "A browser UI for Servo that implements the UI as HTML using Servo's own web rendering support"
7+
"key": "cuervo",
8+
"name": "Cuervo",
9+
"link": "https://github.com/mcclure/cuervo/tree/unstable_traversal_experiment",
10+
"description": "A text-based UI for Servo"
1911
},
2012
{
2113
"key": "kdab",
@@ -30,25 +22,33 @@
3022
"link": "https://github.com/moto-browser/moto",
3123
"description": "A fork/extension of servoshell that aims to add features such as bookmarks, history and download management"
3224
},
33-
{
34-
"key": "cuervo",
35-
"name": "Cuervo",
36-
"link": "https://github.com/mcclure/cuervo/tree/unstable_traversal_experiment",
37-
"description": "A text-based UI for Servo"
38-
},
3925
{
4026
"key": "servo-gtk",
4127
"name": "Servo GTK",
4228
"link": "https://github.com/nacho/servo-gtk",
4329
"img": "/img/made-with/servo-gtk.png",
4430
"description": "A GTK4 library that embeds the Servo web engine"
4531
},
32+
{
33+
"key": "servoshell",
34+
"name": "servoshell",
35+
"link": "https://github.com/servo/servo/tree/main/ports/servoshell",
36+
"img": "/img/made-with/servoshell.png",
37+
"description": "First-party browser UI built with egui"
38+
},
4639
{
4740
"key": "slint-servo",
4841
"name": "Slint Servo",
4942
"link": "https://github.com/slint-ui/slint/tree/master/examples/servo",
5043
"img": "/img/made-with/slint-servo.png",
5144
"description": "Integrate Servo Web Engine as WebView Component for Slint to render websites"
45+
},
46+
{
47+
"key": "verso",
48+
"name": "Verso",
49+
"link": "https://github.com/versotile-org/verso/",
50+
"img": "/img/made-with/verso.png",
51+
"description": "A browser UI for Servo that implements the UI as HTML using Servo's own web rendering support"
5252
}
5353
]
5454
},

made-with.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ title: Made With Servo
6161
## {{group.name}}
6262

6363
<div class="made-with-container">
64-
{% for project in group.projects %}
64+
{% assign projects = group.projects | sort_natural: "name" %}
65+
{% for project in projects %}
6566
<a class="made-with-item" href="{{project.link}}" target="_blank">
6667
{% if project.img %}<img src="{{ project.img | url }}" class="made-with-image" alt=" " />{% endif %}
6768
<div class="made-with-text">

0 commit comments

Comments
 (0)