training/views/spiele.ejs

12 lines
242 B
Plaintext

<%- 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') %>