Netlify CMS is an open source content management system for your Git workflow that enables you to provide editors with a friendly UI and intuitive workflows. You can use it with any static site generator to create faster, more flexible web projects. Content is stored in your Git repository alongside your code for easier versioning, multi-channel publishing, and the option to handle content updates directly in Git.
Preview the example live on StackBlitz:
Execute create-next-app
with npm or Yarn to bootstrap the example:
npx create-next-app --example with-netlify-cms with-netlify-cms-app
# or
yarn create next-app --example with-netlify-cms with-netlify-cms-app
Deploy it to the cloud with Vercel (Documentation).
Sites take its content from markdown files in /content
. Two of pages (home
and about
) are referencing directly their respective markdown files.
Blog component loads all posts (during build!) and lists them out How to load multiple md files
Updated to take advantange of the new getStaticPaths
and getStaticProps
data-fetching functions.