39 lines
571 B
HTML
39 lines
571 B
HTML
<!DOCTYPE html>
|
|
|
|
<!--- Variables
|
|
nom
|
|
prenom
|
|
date
|
|
place
|
|
histoire
|
|
!-->
|
|
<!-- saved from url=(0055)file:///C:/Users/rugja/Marin/templates/bateau_temp.html -->
|
|
|
|
|
|
<html><head>
|
|
<title>{{nom}}- Sauveteurs du dunkerquois</title>
|
|
{% include 'head.html' %}
|
|
</head>
|
|
<body>
|
|
|
|
{% include "smallheader.html" %}
|
|
<h1>{{nom}}</h1>
|
|
<div class="flexbox">
|
|
<p class="right-align">
|
|
|
|
<table>
|
|
<tbody><tr>
|
|
<td class="table_key">Nom</td>
|
|
<td>{{nom}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="table_key">Date</td>
|
|
<td>{{date}}</td>
|
|
</tr>
|
|
|
|
</tbody></table>
|
|
|
|
</body>
|
|
</html>
|
|
|