Skip to content

Commit 3e09bfa

Browse files
committed
Add moto, cuervo, wry backend
Signed-off-by: Nico Burns <nico@nicoburns.com>
1 parent 88742ed commit 3e09bfa

File tree

3 files changed

+32
-1
lines changed

3 files changed

+32
-1
lines changed

_data/madewith.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"img": "/img/made-with/servoshell.png",
1111
"description": "First-party browser UI built with egui and targeting the testing use case"
1212
},
13+
1314
{
1415
"key": "verso",
1516
"name": "Verso",
@@ -23,6 +24,18 @@
2324
"link": "https://www.kdab.com/embedding-servo-in-qt/",
2425
"img": "/img/made-with/servo-qt.png",
2526
"description": "A Servo Webview as Qt widget, enabling browser UI built in Qt"
27+
},
28+
{
29+
"key": "moto",
30+
"name": " Moto",
31+
"link": "https://github.com/moto-browser/moto",
32+
"description": "A fork/extension of servoshell that aims to add features such as bookmarks, history and download management."
33+
},
34+
{
35+
"key": "cuervo",
36+
"name": "Cuervo",
37+
"link": "https://github.com/mcclure/cuervo/tree/unstable_traversal_experiment",
38+
"description": "A TUI interface for Servo"
2639
}
2740
]
2841
},
@@ -36,6 +49,13 @@
3649
"link": "https://github.com/DioxusLabs/blitz",
3750
"img": "/img/made-with/blitz.png",
3851
"description": "An HTML renderer and application runtime built on top of Stylo"
52+
},
53+
{
54+
"key": "wry-backend",
55+
"name": "Wry Backend",
56+
"link": "https://github.com/tauri-apps/wry/tree/servo-wry-demo",
57+
"img": "/img/made-with/wry-backend.png",
58+
"description": "A Servo backend for Wry which abstracts over different webviews"
3959
}
4060
]
4161
}
43.4 KB
Loading

made-with.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ title: Made With Servo
3636
padding: 0;
3737
}
3838

39+
.made-with-image {
40+
aspect-ratio: 2;
41+
object-fit: cover;
42+
object-position: top left;
43+
background-color: transparent;
44+
}
45+
3946
</style>
4047

4148
<div class="inner-container">
@@ -54,7 +61,11 @@ title: Made With Servo
5461
{% for project in group.projects %}
5562

5663
<a class="made-with-item" href="{{project.link}}" target="_blank">
57-
<img src="{{ project.img | url }}" alt=" " />
64+
{% if project.img %}
65+
<img src="{{ project.img | url }}" class="made-with-image" alt=" " />
66+
{% else %}
67+
<!--<img src="{{ project.img | url }}" class="made-with-image" alt=" " /> -->
68+
{% endif %}
5869
<div class="made-with-text">
5970
<h4>{{ project.name }}</h4>
6071
<p>{{ project.description }}</p>

0 commit comments

Comments
 (0)