Files
PantryHub/views/layouts/main.ejs
T
jurgenr ce68182c08 Applicatie afmaken en GUI-flow herstellen
Voegt boodschappenlijsten, productbeheer, realtime synchronisatie en browsercache-updates toe. Herstelt login- en sessiegedrag en maakt database-seeding herhaalbaar.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-08-07 20:44:05 +02:00

45 lines
587 B
Plaintext

<!doctype html>
<html lang="nl">
<head>
<%- include("../partials/head") %>
</head>
<body>
<div class="page">
<%- include("../partials/navbar") %>
<div class="page-wrapper">
<div class="container-xl">
<%- include("../partials/flash") %>
<%- body %>
</div>
<%- include("../partials/footer") %>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@tabler/core@latest/dist/js/tabler.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="/js/app.js"></script>
</body>
</html>