forked from snxraven/ravenscott-blog
feat: redirect if page
is below 1
This commit is contained in:
parent
5a956cb708
commit
9caedb3f87
7
app.js
7
app.js
@ -103,6 +103,11 @@ 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);
|
||||||
@ -185,7 +190,7 @@ app.post('/contact', (req, res) => {
|
|||||||
app.get('/blog/:slug', (req, res) => {
|
app.get('/blog/:slug', (req, res) => {
|
||||||
const slug = req.params.slug;
|
const slug = req.params.slug;
|
||||||
const markdownFile = fs.readdirSync(path.join(__dirname, 'markdown'))
|
const markdownFile = fs.readdirSync(path.join(__dirname, 'markdown'))
|
||||||
.find(file => titleToSlug(file.replace('.md', '')) === slug);
|
.find(file => titleToSlug(file.replace('.md', '')) === slug);
|
||||||
|
|
||||||
if (markdownFile) {
|
if (markdownFile) {
|
||||||
const originalTitle = markdownFile.replace('.md', ''); // Original title with casing
|
const originalTitle = markdownFile.replace('.md', ''); // Original title with casing
|
||||||
|
Loading…
Reference in New Issue
Block a user