mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-25 22:39:41 +01:00
Fix feed query
This commit is contained in:
parent
fd85dc355a
commit
042caa13f8
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user