├── .gitignore ├── 404.php ├── README.md ├── archive-movie.php ├── front-page.php ├── functions.php ├── index.php ├── layout.php ├── package.json ├── page-post-requests.php ├── page.php ├── resources ├── css │ └── app.css └── js │ ├── Pages │ ├── 404.vue │ ├── Default.vue │ ├── FrontPage.vue │ ├── Movies │ │ ├── Index.vue │ │ └── Show.vue │ ├── Page.vue │ └── PagePostRequest.vue │ ├── Shared │ ├── Footer.vue │ ├── Header.vue │ └── Layout.vue │ ├── app.js │ └── components │ └── Toast.vue ├── single-movie.php ├── src ├── helpers.php ├── movie-cpt.php ├── rest-endpoints.php └── wp-hooks.php ├── style.css ├── tailwind.config.js └── webpack.mix.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | 4 | mix-manifest.json -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/404.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/README.md -------------------------------------------------------------------------------- /archive-movie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/archive-movie.php -------------------------------------------------------------------------------- /front-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/front-page.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/functions.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/index.php -------------------------------------------------------------------------------- /layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/layout.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/package.json -------------------------------------------------------------------------------- /page-post-requests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/page-post-requests.php -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/page.php -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/Pages/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/Pages/404.vue -------------------------------------------------------------------------------- /resources/js/Pages/Default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/Pages/Default.vue -------------------------------------------------------------------------------- /resources/js/Pages/FrontPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/Pages/FrontPage.vue -------------------------------------------------------------------------------- /resources/js/Pages/Movies/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/Pages/Movies/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Movies/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/Pages/Movies/Show.vue -------------------------------------------------------------------------------- /resources/js/Pages/Page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/Pages/Page.vue -------------------------------------------------------------------------------- /resources/js/Pages/PagePostRequest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/Pages/PagePostRequest.vue -------------------------------------------------------------------------------- /resources/js/Shared/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/Shared/Footer.vue -------------------------------------------------------------------------------- /resources/js/Shared/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/Shared/Header.vue -------------------------------------------------------------------------------- /resources/js/Shared/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/Shared/Layout.vue -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/components/Toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/resources/js/components/Toast.vue -------------------------------------------------------------------------------- /single-movie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/single-movie.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/src/helpers.php -------------------------------------------------------------------------------- /src/movie-cpt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/src/movie-cpt.php -------------------------------------------------------------------------------- /src/rest-endpoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/src/rest-endpoints.php -------------------------------------------------------------------------------- /src/wp-hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/src/wp-hooks.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/style.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boxybird/wordpress-inertia-demo-theme/HEAD/webpack.mix.js --------------------------------------------------------------------------------