mirror of
https://github.com/kingomarnajjar/gatsby-starter-netlify-cms.git
synced 2026-07-25 22:27:24 +10:00
79 lines
1.9 KiB
JavaScript
79 lines
1.9 KiB
JavaScript
const path = require('path');
|
|
|
|
exports.createPages = ({ boundActionCreators, graphql }) => {
|
|
const { createPage } = boundActionCreators;
|
|
|
|
return graphql(`
|
|
{
|
|
allMarkdownRemark(sort: { order: DESC, fields: [frontmatter___date] }, limit: 1000) {
|
|
edges {
|
|
node {
|
|
excerpt(pruneLength: 400)
|
|
html
|
|
id
|
|
frontmatter {
|
|
templateKey
|
|
path
|
|
date
|
|
title
|
|
image
|
|
heading
|
|
description
|
|
intro {
|
|
blurbs {
|
|
image
|
|
text
|
|
}
|
|
heading
|
|
description
|
|
}
|
|
main {
|
|
heading
|
|
description
|
|
image1 {
|
|
alt
|
|
image
|
|
}
|
|
image2 {
|
|
alt
|
|
image
|
|
}
|
|
image3 {
|
|
alt
|
|
image
|
|
}
|
|
}
|
|
testimonials {
|
|
author
|
|
quote
|
|
}
|
|
full_image
|
|
pricing {
|
|
heading
|
|
description
|
|
plans {
|
|
description
|
|
items
|
|
plan
|
|
price
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`).then(result => {
|
|
if (result.errors) {
|
|
result.errors.forEach(e => console.error(e.toString()));
|
|
return Promise.reject(result.errors);
|
|
}
|
|
result.data.allMarkdownRemark.edges.forEach(({ node }) => {
|
|
createPage({
|
|
path: node.frontmatter.path,
|
|
component: path.resolve(`src/templates/${String(node.frontmatter.templateKey)}.js`),
|
|
context: {} // additional data can be passed via context
|
|
});
|
|
});
|
|
});
|
|
};
|