├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── content ├── about │ └── about.txt ├── contact │ └── contact.txt ├── home │ └── home.txt └── site.txt ├── package.json ├── public ├── .htaccess └── index.php ├── site ├── config │ └── config.php ├── snippets │ ├── footer.php │ ├── header.php │ └── menu.php └── templates │ ├── about.php │ ├── contact.php │ ├── default.php │ └── home.php ├── src ├── assets │ └── Compagnon-Bold.woff2 ├── index.css ├── index.js └── templates │ ├── about.css │ ├── about.js │ ├── contact.css │ ├── contact.js │ ├── home.css │ └── home.js └── vite.config.js /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/composer.lock -------------------------------------------------------------------------------- /content/about/about.txt: -------------------------------------------------------------------------------- 1 | Title: About -------------------------------------------------------------------------------- /content/contact/contact.txt: -------------------------------------------------------------------------------- 1 | Title: Contact -------------------------------------------------------------------------------- /content/home/home.txt: -------------------------------------------------------------------------------- 1 | Title: Home -------------------------------------------------------------------------------- /content/site.txt: -------------------------------------------------------------------------------- 1 | Title: Kirby Vite Multi-Page -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/package.json -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/public/index.php -------------------------------------------------------------------------------- /site/config/config.php: -------------------------------------------------------------------------------- 1 | true 5 | ]; -------------------------------------------------------------------------------- /site/snippets/footer.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /site/snippets/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/site/snippets/header.php -------------------------------------------------------------------------------- /site/snippets/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/site/snippets/menu.php -------------------------------------------------------------------------------- /site/templates/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/site/templates/about.php -------------------------------------------------------------------------------- /site/templates/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/site/templates/contact.php -------------------------------------------------------------------------------- /site/templates/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/site/templates/default.php -------------------------------------------------------------------------------- /site/templates/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/site/templates/home.php -------------------------------------------------------------------------------- /src/assets/Compagnon-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/src/assets/Compagnon-Bold.woff2 -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | console.log("shared"); 2 | -------------------------------------------------------------------------------- /src/templates/about.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: yellow; 3 | } -------------------------------------------------------------------------------- /src/templates/about.js: -------------------------------------------------------------------------------- 1 | console.log('template about') -------------------------------------------------------------------------------- /src/templates/contact.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: tomato; 3 | } -------------------------------------------------------------------------------- /src/templates/contact.js: -------------------------------------------------------------------------------- 1 | console.log("template contact"); 2 | -------------------------------------------------------------------------------- /src/templates/home.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: aquamarine; 3 | } -------------------------------------------------------------------------------- /src/templates/home.js: -------------------------------------------------------------------------------- 1 | console.log("template home"); 2 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnoson/kirby-vite-multi-page-kit/HEAD/vite.config.js --------------------------------------------------------------------------------