resto-epi/views/infos.ejs
2025-08-29 09:52:42 +02:00

17 lines
No EOL
334 B
Text

<!DOCTYPE html>
<html>
<head>
<title><%= restaurant.nom %></title>
</head>
<body>
<h1><%= restaurant.nom %></h1>
<p><%= restaurant.description %></p>
<p>Adresse : <%= restaurant.adresse %></p>
<h2>Menu</h2>
<ul>
<% restaurant.menu.forEach((plat) => { %>
<li><%= plat %></li>
<% }); %>
</ul>
</body>
</html>