Compare commits
No commits in common. "0c9279805e16d43c8269bee15a13bbd79d8ce30d" and "5a956cb70856ce73b949ca9c6f0919b3f7b5bc36" have entirely different histories.
0c9279805e
...
5a956cb708
5
app.js
5
app.js
@ -103,11 +103,6 @@ function getAllBlogPosts(page = 1, postsPerPage = 5) {
|
||||
// Home Route (Blog Home with Pagination)
|
||||
app.get('/', (req, res) => {
|
||||
const page = parseInt(req.query.page) || 1;
|
||||
|
||||
if (page < 1) {
|
||||
return res.redirect(req.hostname);
|
||||
}
|
||||
|
||||
const postsPerPage = 5; // Set how many posts to display per page
|
||||
|
||||
const { blogPosts, totalPages } = getAllBlogPosts(page, postsPerPage);
|
||||
|
Loading…
Reference in New Issue
Block a user