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