-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoverview.html
executable file
·59 lines (44 loc) · 933 Bytes
/
overview.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<style>
.content {
font-family: Arial, sans-serif;
margin: 0;
display: flex;
flex-wrap: wrap;
min-height: 100vh;
background-color: #f0f0f0;
}
.list {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 0;
text-align: center;
}
.list li {
background-color: #ffff;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin: 10px;
padding: 15px;
min-width: 200px;
height: 100px;
font-size: x-large;
align-content: center;
}
.list li a{
text-decoration: none;
color: black;
}
</style>
</head>
<!-- Script JavaScript pour la fonction de recherche -->
{% extends 'container.html' %} {% block content %}
<div class="content">
<main>
<ul class="list">
{% for image in images %}
<li><a href="{{ url_for('overview')}}/{{ image[0] }}">{{ image[0] }}</a> : {{image[1]}}</li>
{% endfor %}
</ul>
</main>
{% endblock %}