Marin/templates/expedition.html

39 lines
571 B
HTML
Raw Normal View History

<!DOCTYPE html>
2021-12-03 06:07:41 +01:00
<!--- Variables
2021-12-03 05:58:51 +01:00
nom
prenom
date
2021-12-03 05:58:51 +01:00
place
histoire
!-->
<!-- saved from url=(0055)file:///C:/Users/rugja/Marin/templates/bateau_temp.html -->
2021-12-03 06:07:41 +01:00
<html><head>
2021-12-03 05:58:51 +01:00
<title>{{nom}}- Sauveteurs du dunkerquois</title>
{% include 'head.html' %}
2021-12-03 05:58:51 +01:00
</head>
<body>
2021-12-03 06:07:41 +01:00
2021-12-03 05:58:51 +01:00
{% 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>
2021-12-03 06:07:41 +01:00
2021-12-03 05:17:01 +01:00
</body>
</html>
2021-12-03 06:07:41 +01:00