Fix condition
This commit is contained in:
parent
47408c3997
commit
02eadc482b
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ class BlogIndex extends React.Component {
|
|||
access(page, 'data.date')
|
||||
).reverse()
|
||||
sortedPages.forEach((page) => {
|
||||
if (access(page, 'file.ext') === 'md' && include(page.path, '/404/')) {
|
||||
if (access(page, 'file.ext') === 'md' && !include(page.path, '/404')) {
|
||||
const title = access(page, 'data.title') || page.path
|
||||
pageLinks.push(
|
||||
<li
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue