├── .gitignore ├── README.md ├── package.json ├── posts ├── now-publishing-with-netlify-cms.md └── this-is-a-test.md ├── public ├── admin │ ├── config.yml │ └── index.html ├── favicon.ico ├── images │ ├── netlifyicon.png │ └── pumpbeerthumb.jpg ├── index.html ├── main.js ├── manifest.json └── robots.txt ├── src ├── components │ ├── components.css │ ├── footer.js │ ├── header.js │ ├── layout.js │ ├── navbar.js │ └── postlist.js ├── index.css ├── index.js ├── pages.json ├── pages │ ├── about.js │ ├── content │ │ └── about.md │ ├── home.js │ ├── notfound.js │ ├── pages.css │ └── post.js ├── posts.json └── setupTests.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/package.json -------------------------------------------------------------------------------- /posts/now-publishing-with-netlify-cms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/posts/now-publishing-with-netlify-cms.md -------------------------------------------------------------------------------- /posts/this-is-a-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/posts/this-is-a-test.md -------------------------------------------------------------------------------- /public/admin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/public/admin/config.yml -------------------------------------------------------------------------------- /public/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/public/admin/index.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/netlifyicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/public/images/netlifyicon.png -------------------------------------------------------------------------------- /public/images/pumpbeerthumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/public/images/pumpbeerthumb.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/public/main.js -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/components/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/components/components.css -------------------------------------------------------------------------------- /src/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/components/footer.js -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/components/navbar.js -------------------------------------------------------------------------------- /src/components/postlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/components/postlist.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/pages.json -------------------------------------------------------------------------------- /src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/pages/about.js -------------------------------------------------------------------------------- /src/pages/content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/pages/content/about.md -------------------------------------------------------------------------------- /src/pages/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/pages/home.js -------------------------------------------------------------------------------- /src/pages/notfound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/pages/notfound.js -------------------------------------------------------------------------------- /src/pages/pages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/pages/pages.css -------------------------------------------------------------------------------- /src/pages/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/pages/post.js -------------------------------------------------------------------------------- /src/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/posts.json -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willjw3/netlify-cms-react-app/HEAD/yarn.lock --------------------------------------------------------------------------------