You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
435 B
HTML
21 lines
435 B
HTML
2 years ago
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
body{
|
||
|
clear: both;
|
||
|
margin: 0;
|
||
|
}
|
||
|
img{
|
||
|
width: 20vw;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
img:hover{
|
||
|
filter: invert(1);
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% for image in images %}<img src="{{image}}">{% endfor %}
|
||
|
</body>
|
||
|
</html>
|