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) => {
res.render('index', {
res.render('app', {
page: {
title: 'Web',
titlesuffix: 'Home',
description: 'Homepage'
title: 'Chore Chart',
titlesuffix: 'View Grocy Chores',
description: 'chore-chart displays chores from a Grocy instance.'
}
});
});

View File

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