You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
378 B
34 lines
378 B
1 year ago
|
<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>
|