Marin/templates/searchresults.html

30 lines
866 B
HTML

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>{{nom}} {{prenom}} - Sauveuteurs du dunkerquois</title>
<link href="../static/style.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/png" href="../static/favicon.png" />
</head>
<body>
<header id="banner">
<img src="../static/icon.png" width="150" height="75">
<span id="logo_title">Sauveuteurs du dunkerquois</span>
</header>
<br>
<form class="searchbar" method=get>
<input type="text" placeholder="Saisissez votre recherche..." size=20>
<input type="submit" value="Rechercher">
</form>
<h1>Résultats de la recherche :</h1>
<center>
<table id="searchresults">
{% for result in liste %}
<tr>
<td><a href="{{result.lien}}">{{result.nom}}</a></td>
</tr>
{% endfor %}
</table>
</center>
</body>
</html>