17 lines
No EOL
334 B
Text
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> |