├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── data ├── README.md ├── runtime │ ├── README.md │ ├── cache │ │ └── .gitkeep │ ├── logs │ │ └── .gitkeep │ └── sessions │ │ └── .gitkeep └── storage │ ├── README.md │ ├── accounts │ └── .gitkeep │ └── content │ ├── error │ └── error.txt │ ├── home │ └── home.txt │ └── site.txt ├── public ├── .htaccess ├── index.php └── media │ └── .gitkeep └── site ├── blueprints ├── pages │ └── default.yml └── site.yml ├── config └── config.php ├── snippets └── .gitkeep └── templates └── default.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/composer.lock -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/data/README.md -------------------------------------------------------------------------------- /data/runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/data/runtime/README.md -------------------------------------------------------------------------------- /data/runtime/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/runtime/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/runtime/sessions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/data/storage/README.md -------------------------------------------------------------------------------- /data/storage/accounts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/storage/content/error/error.txt: -------------------------------------------------------------------------------- 1 | Title: Error 2 | -------------------------------------------------------------------------------- /data/storage/content/home/home.txt: -------------------------------------------------------------------------------- 1 | Title: Home 2 | -------------------------------------------------------------------------------- /data/storage/content/site.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/data/storage/content/site.txt -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/public/index.php -------------------------------------------------------------------------------- /public/media/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/blueprints/pages/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/site/blueprints/pages/default.yml -------------------------------------------------------------------------------- /site/blueprints/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getkirby/composerkit/HEAD/site/blueprints/site.yml -------------------------------------------------------------------------------- /site/config/config.php: -------------------------------------------------------------------------------- 1 | true 5 | ]; 6 | -------------------------------------------------------------------------------- /site/snippets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/templates/default.php: -------------------------------------------------------------------------------- 1 |

title() ?>

2 | --------------------------------------------------------------------------------