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>
33 lines
577 B
Plaintext
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>
|