minor html changes
All checks were successful
App Image CI / Build app image (push) Successful in 35s
NPM Audit Check / Check NPM audit (push) Successful in -2m9s

This commit is contained in:
2025-10-15 00:12:39 -05:00
parent 893eb6f801
commit f653af501f
3 changed files with 5 additions and 16 deletions

View File

@@ -56,11 +56,11 @@ class Web {
}); });
app.get('/', (_, res) => { app.get('/', (_, res) => {
res.render('index', { res.render('app', {
page: { page: {
title: 'Web', title: 'Chore Chart',
titlesuffix: 'Home', titlesuffix: 'View Grocy Chores',
description: 'Homepage' description: 'chore-chart displays chores from a Grocy instance.'
} }
}); });
}); });

View File

@@ -6,9 +6,9 @@
</head> </head>
<body class="preload"> <body class="preload">
<%- include("navigation", locals) %>
<div class="content"> <div class="content">
<h1>Hello World</h1> <h1>Hello World</h1>
</div> </div>
<script nonce="<%= cspNonce %>" src="/assets/js/content.js" defer></script>
</body> </body>
</html> </html>

View File

@@ -1,11 +0,0 @@
<div class="navigation">
<div class="nav_logo">
<a href="/"><img src="/assets/svg/logo.svg" alt="Logo" /></a>
</div>
<nav>
<ul class="nav_links">
<li><a href="/">Home</a></li>
<li><a href="/ky">Away</a></li>
</ul>
</nav>
</div>