Files
PantryHub/views/layouts/main.ejs
T
jurgenr c07d503d83 Werk hoofdapplicatie bij
Legt de bestaande wijzigingen in de hoofdworktree vast voordat de laatste worktree wordt gemerged.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-08-07 20:45:36 +02:00

33 lines
577 B
Plaintext

<!DOCTYPE html>
<html lang="nl" data-household-id="<%= user?.household_id || '' %>">
<head>
<%- include("../partials/head") %>
</head>
<body>
<%- include("../partials/navbar") %>
<main class="container-xl mt-4">
<%- include("../partials/flash") %>
<%- body %>
</main>
<%- include("../partials/footer") %>
<script src="https://cdn.jsdelivr.net/npm/@tabler/core@latest/dist/js/tabler.bundle.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="/js/app.js"></script>
</body>
</html>