├── .gitignore ├── README.md ├── docker-compose.yml ├── docker ├── config │ └── uploads.ini └── wordpress │ └── plugins │ └── wpml-rest-api-master │ └── wpml-rest-api.php ├── gatsby-wordpress ├── .env.development ├── .env.production ├── .prettierrc ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package-lock.json ├── package.json └── src │ ├── components │ ├── header.js │ ├── image.js │ ├── layout.css │ ├── layout.js │ └── seo.js │ ├── images │ ├── gatsby-astronaut.png │ └── gatsby-icon.png │ ├── pages │ ├── 404.js │ ├── fr.js │ ├── index.js │ └── pages.js │ └── templates │ ├── page.js │ ├── post-fr.js │ └── post.js └── netlify.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/config/uploads.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/docker/config/uploads.ini -------------------------------------------------------------------------------- /docker/wordpress/plugins/wpml-rest-api-master/wpml-rest-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/docker/wordpress/plugins/wpml-rest-api-master/wpml-rest-api.php -------------------------------------------------------------------------------- /gatsby-wordpress/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/.env.development -------------------------------------------------------------------------------- /gatsby-wordpress/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/.env.production -------------------------------------------------------------------------------- /gatsby-wordpress/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/.prettierrc -------------------------------------------------------------------------------- /gatsby-wordpress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/LICENSE -------------------------------------------------------------------------------- /gatsby-wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/README.md -------------------------------------------------------------------------------- /gatsby-wordpress/gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-wordpress/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-wordpress/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-wordpress/gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/gatsby-ssr.js -------------------------------------------------------------------------------- /gatsby-wordpress/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/package-lock.json -------------------------------------------------------------------------------- /gatsby-wordpress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/package.json -------------------------------------------------------------------------------- /gatsby-wordpress/src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/components/header.js -------------------------------------------------------------------------------- /gatsby-wordpress/src/components/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/components/image.js -------------------------------------------------------------------------------- /gatsby-wordpress/src/components/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/components/layout.css -------------------------------------------------------------------------------- /gatsby-wordpress/src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/components/layout.js -------------------------------------------------------------------------------- /gatsby-wordpress/src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/components/seo.js -------------------------------------------------------------------------------- /gatsby-wordpress/src/images/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/images/gatsby-astronaut.png -------------------------------------------------------------------------------- /gatsby-wordpress/src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /gatsby-wordpress/src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/pages/404.js -------------------------------------------------------------------------------- /gatsby-wordpress/src/pages/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/pages/fr.js -------------------------------------------------------------------------------- /gatsby-wordpress/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/pages/index.js -------------------------------------------------------------------------------- /gatsby-wordpress/src/pages/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/pages/pages.js -------------------------------------------------------------------------------- /gatsby-wordpress/src/templates/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/templates/page.js -------------------------------------------------------------------------------- /gatsby-wordpress/src/templates/post-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/templates/post-fr.js -------------------------------------------------------------------------------- /gatsby-wordpress/src/templates/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/gatsby-wordpress/src/templates/post.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbaouimehdi/workshop-gatsby-wordpress-wpml/HEAD/netlify.toml --------------------------------------------------------------------------------