├── .gitignore ├── README.md ├── browserslist ├── client ├── assets │ └── favicon.ico ├── components │ ├── hello │ │ ├── index.js │ │ └── style.css │ ├── layout │ │ ├── index.js │ │ └── style.css │ ├── not_found.js │ └── root.js ├── index.js ├── routes.js └── styling │ └── colors.css ├── package.json └── tools ├── build_static.js ├── build_static_entry.js ├── dev_server.js ├── isomorphic.prod.config.js ├── lib ├── get_paths.js ├── render_document.js ├── render_sitemap.js └── write_file.js ├── webpack.dev.config.js └── webpack.prod.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/README.md -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/browserslist -------------------------------------------------------------------------------- /client/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/client/assets/favicon.ico -------------------------------------------------------------------------------- /client/components/hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/client/components/hello/index.js -------------------------------------------------------------------------------- /client/components/hello/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/client/components/hello/style.css -------------------------------------------------------------------------------- /client/components/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/client/components/layout/index.js -------------------------------------------------------------------------------- /client/components/layout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/client/components/layout/style.css -------------------------------------------------------------------------------- /client/components/not_found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/client/components/not_found.js -------------------------------------------------------------------------------- /client/components/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/client/components/root.js -------------------------------------------------------------------------------- /client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/client/index.js -------------------------------------------------------------------------------- /client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/client/routes.js -------------------------------------------------------------------------------- /client/styling/colors.css: -------------------------------------------------------------------------------- 1 | $darkGray: #323233; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/package.json -------------------------------------------------------------------------------- /tools/build_static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/tools/build_static.js -------------------------------------------------------------------------------- /tools/build_static_entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/tools/build_static_entry.js -------------------------------------------------------------------------------- /tools/dev_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/tools/dev_server.js -------------------------------------------------------------------------------- /tools/isomorphic.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/tools/isomorphic.prod.config.js -------------------------------------------------------------------------------- /tools/lib/get_paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/tools/lib/get_paths.js -------------------------------------------------------------------------------- /tools/lib/render_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/tools/lib/render_document.js -------------------------------------------------------------------------------- /tools/lib/render_sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/tools/lib/render_sitemap.js -------------------------------------------------------------------------------- /tools/lib/write_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/tools/lib/write_file.js -------------------------------------------------------------------------------- /tools/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/tools/webpack.dev.config.js -------------------------------------------------------------------------------- /tools/webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webyak/react-static-plate/HEAD/tools/webpack.prod.config.js --------------------------------------------------------------------------------