├── .gitignore ├── .htaccess ├── README.md ├── app ├── bootstrap.php ├── config │ ├── config.local.neon │ └── config.neon ├── presenters │ ├── Error4xxPresenter.php │ ├── ErrorPresenter.php │ ├── HomepagePresenter.php │ └── templates │ │ ├── @layout.latte │ │ ├── Error │ │ ├── 403.latte │ │ ├── 404.latte │ │ ├── 405.latte │ │ ├── 410.latte │ │ ├── 4xx.latte │ │ ├── 500.phtml │ │ └── 503.phtml │ │ └── Homepage │ │ ├── default.latte │ │ └── thankYou.latte └── router │ └── RouterFactory.php ├── composer.json ├── composer.lock ├── database └── schema.sql ├── log └── .gitignore ├── temp └── .gitignore └── www ├── .htaccess ├── css └── style.css ├── favicon.ico ├── index.php └── robots.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/README.md -------------------------------------------------------------------------------- /app/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/bootstrap.php -------------------------------------------------------------------------------- /app/config/config.local.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/config/config.local.neon -------------------------------------------------------------------------------- /app/config/config.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/config/config.neon -------------------------------------------------------------------------------- /app/presenters/Error4xxPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/Error4xxPresenter.php -------------------------------------------------------------------------------- /app/presenters/ErrorPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/ErrorPresenter.php -------------------------------------------------------------------------------- /app/presenters/HomepagePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/HomepagePresenter.php -------------------------------------------------------------------------------- /app/presenters/templates/@layout.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/templates/@layout.latte -------------------------------------------------------------------------------- /app/presenters/templates/Error/403.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/templates/Error/403.latte -------------------------------------------------------------------------------- /app/presenters/templates/Error/404.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/templates/Error/404.latte -------------------------------------------------------------------------------- /app/presenters/templates/Error/405.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/templates/Error/405.latte -------------------------------------------------------------------------------- /app/presenters/templates/Error/410.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/templates/Error/410.latte -------------------------------------------------------------------------------- /app/presenters/templates/Error/4xx.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/templates/Error/4xx.latte -------------------------------------------------------------------------------- /app/presenters/templates/Error/500.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/templates/Error/500.phtml -------------------------------------------------------------------------------- /app/presenters/templates/Error/503.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/templates/Error/503.phtml -------------------------------------------------------------------------------- /app/presenters/templates/Homepage/default.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/templates/Homepage/default.latte -------------------------------------------------------------------------------- /app/presenters/templates/Homepage/thankYou.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/presenters/templates/Homepage/thankYou.latte -------------------------------------------------------------------------------- /app/router/RouterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/app/router/RouterFactory.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/composer.lock -------------------------------------------------------------------------------- /database/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/database/schema.sql -------------------------------------------------------------------------------- /log/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /www/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/www/.htaccess -------------------------------------------------------------------------------- /www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/www/css/style.css -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evasio/prelaunch-landing-page/HEAD/www/index.php -------------------------------------------------------------------------------- /www/robots.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------