├── .htaccess ├── LICENSE ├── README.md ├── app ├── Model.php ├── app.php ├── autoload.php ├── controllers │ ├── default.php │ └── films.php └── views │ ├── error.php │ ├── films.php │ ├── header.php │ ├── hello.php │ ├── home.php │ └── layout.php ├── bootstrap ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ └── bootstrap.min.css └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── composer.json ├── css └── style.css ├── index.php └── nginx.conf /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/README.md -------------------------------------------------------------------------------- /app/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/app/Model.php -------------------------------------------------------------------------------- /app/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/app/app.php -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/controllers/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/app/controllers/default.php -------------------------------------------------------------------------------- /app/controllers/films.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/app/controllers/films.php -------------------------------------------------------------------------------- /app/views/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/app/views/error.php -------------------------------------------------------------------------------- /app/views/films.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/app/views/films.php -------------------------------------------------------------------------------- /app/views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/app/views/header.php -------------------------------------------------------------------------------- /app/views/hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/app/views/hello.php -------------------------------------------------------------------------------- /app/views/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/app/views/home.php -------------------------------------------------------------------------------- /app/views/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/app/views/layout.php -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/composer.json -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/css/style.css -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/index.php -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gregwar/Plankton/HEAD/nginx.conf --------------------------------------------------------------------------------