app.get('/reposts', async (req, res) => { const reposts = await Repost.find(); res.render('reposts', { reposts }); });>