Initial bones for #37

This commit is contained in:
Logan Cusano
2023-07-15 18:16:42 -04:00
committed by logan
parent 4a54be7e51
commit 02854fb783
13 changed files with 561 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
<%- include('partials/htmlHead.ejs') %>
<div class="container">
<div class="row row-cols-1 row-cols-md-2 row-cols-xl-4">
<% for(const node of nodes) {%>
<%- include('partials/nodeCard.ejs', {'node': node}) %>
<% } %>
</div>
</div>
<%- include('partials/bodyEnd.ejs') %>
<script src="/res/js/controller.js"></script>
<%- include('partials/htmlFooter.ejs') %>