50 lines
857 B
HTML
50 lines
857 B
HTML
<!DOCTYPE html>
|
|
<!--- Variables
|
|
nom
|
|
constructeur
|
|
dimensions
|
|
installation
|
|
condamnation
|
|
origine
|
|
histoire
|
|
!-->
|
|
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>{{nom}}</title>
|
|
<link href="/static/style.css" rel="stylesheet" type="text/css">
|
|
<link rel="icon" type="image/png" href="../static/favicon.png" />
|
|
</head>
|
|
<body>
|
|
<h1>{{nom}}}</h1>
|
|
<table>
|
|
<tbody><tr>
|
|
<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>
|
|
<td>{{DateInstallation}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Condamnation</td>
|
|
<td>{{DateCondamnation}}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Origine</th>
|
|
<th>{{ville}}</th>
|
|
</tr>
|
|
</tbody></table>
|
|
<p>
|
|
{{HistoireBateau}}
|
|
</p>
|
|
|
|
|
|
</body></html>
|