19 lines
397 B
Smarty
19 lines
397 B
Smarty
<html>
|
|
<head>
|
|
<title>Fioul</title>
|
|
<link rel="stylesheet" href="/static/classless.css">
|
|
<link rel="icon" type="image/png" href="/static/favicon.png" />
|
|
</head>
|
|
<body>
|
|
<h1>Prix du m³ de fioul pour Languidic</h1>
|
|
<table id="results" class="u-full-width">
|
|
% for x in results:
|
|
<tr>
|
|
<td>{{x.date}}</td>
|
|
<td>{{x.price}}</td>
|
|
</tr>
|
|
% end
|
|
</table>
|
|
</body>
|
|
</html>
|