add guestbook records to index page

This commit is contained in:
b1ek 2023-02-22 17:55:13 +10:00
parent 2bc7d847f3
commit 7294210821
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 17 additions and 8 deletions

View File

@ -1,11 +1,19 @@
const Helpers = require('../helpers');
const Sequelize = require('../models');
async function handler(req, res) {
let gb_entries = await Sequelize.Guestbook.findAll({
limit: 5,
order: [['id', 'DESC']]
});
res.send(
await Helpers.ViewLoader.load(
'main.pug',
{
current_route: '/'
current_route: '/',
gb_entries
}
)
);

View File

@ -24,12 +24,13 @@ block content
| (
a(href='/guestbook.rss') RSS
| )
ul
li entry
li entry
li entry
li entry
li entry
if (gb_entries)
ul(style='margin:0 10px;padding:0')
each entry in gb_entries
li(style='padding-bottom:10px')
| #{entry.name} says:
br
| #{entry.text}
a(href='/guestbook') Write something in my guestbook!
td(width='50%' style='border-left:1px solid #c2c4c2;border-right:1px solid #c2c4c2;padding:0 1%')
h3 Blog