mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-07-27 12:42:28 +02:00
fixed pagination, fixed cookiebar dark mode, fixed rendering issues during ssr, moved all test blog code to a test folder
This commit is contained in:
@@ -11,7 +11,9 @@ export interface PostsQueryResult {
|
||||
const postsQuery = async (graphql: CreatePagesArgs["graphql"]) => {
|
||||
const result = await graphql<PostsQueryResult>(`
|
||||
{
|
||||
allMarkdownRemark(filter: { frontmatter: { draft: { ne: true } } }) {
|
||||
allMarkdownRemark(
|
||||
filter: { frontmatter: { draft: { ne: true }, template: { eq: "post" } } }
|
||||
) {
|
||||
edges {
|
||||
node {
|
||||
fields {
|
||||
|
Reference in New Issue
Block a user