training/views/spiele.ejs

12 lines
242 B
Plaintext
Raw Permalink Normal View History

2024-05-28 00:17:57 +02:00
<%- include('partials/header') %>
<h1>Spiele</h1>
<ul>
<% spiele.forEach(spiel => { %>
<li><a href="/spiel/<%= spiel.id %>"><strong><%= spiel.name %></strong></a></li>
<% }) %>
</ul>
</body>
</html>
<%- include('partials/footer') %>