File tree Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 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" ,
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 },
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 }
Original file line number Diff line number Diff 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>
You can’t perform that action at this time.
0 commit comments