Marin/templates/searchresults.html

20 lines
425 B
HTML

<!DOCTYPE html>
<head>
<title>Recherche - Sauveuteurs du dunkerquois</title>
{% include 'head.html' %}
</head>
<body>
{% include "smallheader.html" %}
<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>