Marin/templates/bateau.html

50 lines
857 B
HTML
Raw Normal View History

2021-12-02 20:26:10 +01:00
<!DOCTYPE html>
2021-12-03 01:27:37 +01:00
<!--- Variables
nom
constructeur
dimensions
installation
condamnation
origine
histoire
!-->
2021-12-02 20:26:10 +01:00
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>{{nom}}</title>
2021-12-03 02:05:05 +01:00
<link href="/static/style.css" rel="stylesheet" type="text/css">
2021-12-03 03:05:16 +01:00
<link rel="icon" type="image/png" href="../static/favicon.png" />
2021-12-02 20:26:10 +01:00
</head>
<body>
<h1>{{nom}}}</h1>
<table>
<tbody><tr>
2021-12-03 01:27:37 +01:00
<td>Nom</td>
<td>{{NomBateau}}</td>
</tr>
<tr>
<td>Constructeur</td>
<td>{{nom}}</td>
</tr>
<tr>
<td>Dimensions</td>
<td>{{Dimensions}}</td>
</tr>
<tr>
<td>Installation</td>
2021-12-03 02:05:05 +01:00
<td>{{DateInstallation}}</td>
2021-12-03 01:27:37 +01:00
</tr>
<tr>
<td>Condamnation</td>
2021-12-03 02:05:05 +01:00
<td>{{DateCondamnation}}</td>
2021-12-02 20:26:10 +01:00
</tr>
<tr>
<th>Origine</th>
<th>{{ville}}</th>
</tr>
</tbody></table>
<p>
{{HistoireBateau}}
</p>
</body></html>