mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-08-06 17:38:09 +02:00
Fix feed query
This commit is contained in:
@@ -58,7 +58,7 @@ module.exports = {
|
||||
allMarkdownRemark(
|
||||
limit: 1000,
|
||||
sort: { order: DESC, fields: [frontmatter___date] },
|
||||
filter: { frontmatter: { layout: { eq: "post" }, draft: { ne: true } } }
|
||||
filter: { frontmatter: { template: { eq: "post" }, draft: { ne: true } } }
|
||||
) {
|
||||
edges {
|
||||
node {
|
||||
@@ -69,7 +69,7 @@ module.exports = {
|
||||
frontmatter {
|
||||
title
|
||||
date
|
||||
layout
|
||||
template
|
||||
draft
|
||||
description
|
||||
}
|
||||
|
Reference in New Issue
Block a user