Compare commits

..

No commits in common. "0c9279805e16d43c8269bee15a13bbd79d8ce30d" and "5a956cb70856ce73b949ca9c6f0919b3f7b5bc36" have entirely different histories.

5
app.js
View File

@ -103,11 +103,6 @@ function getAllBlogPosts(page = 1, postsPerPage = 5) {
// Home Route (Blog Home with Pagination) // Home Route (Blog Home with Pagination)
app.get('/', (req, res) => { app.get('/', (req, res) => {
const page = parseInt(req.query.page) || 1; 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 postsPerPage = 5; // Set how many posts to display per page
const { blogPosts, totalPages } = getAllBlogPosts(page, postsPerPage); const { blogPosts, totalPages } = getAllBlogPosts(page, postsPerPage);