mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-21 14:02:05 +08:00
d64fb1838d
date: 2024-06-11T01:36:39
master commit: f8cb04e4a8
34 lines
378 B
HTML
34 lines
378 B
HTML
<html>
|
|
|
|
<style>
|
|
.column {
|
|
float: left;
|
|
width: 50%;
|
|
padding: 5px;
|
|
}
|
|
|
|
.row::after {
|
|
content: "";
|
|
clear: both;
|
|
display: table;
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
}
|
|
|
|
</style>
|
|
|
|
{% for name, (image, ref_image) in cases.items() %}
|
|
|
|
<h1>{{name}}</h1>
|
|
<div class="row">
|
|
<div class="column">
|
|
<img class="image" src="{{ image }}" />
|
|
</div>
|
|
</div>
|
|
|
|
<br>
|
|
|
|
{% endfor %}
|
|
</html> |