├── templates ├── content │ └── index.php ├── navigation │ └── index.php ├── settings │ └── index.php └── index.php ├── .gitignore ├── screenshots └── screenshot1.png ├── .eslintrc.js ├── .babelrc.js ├── webpack.prod.js ├── webpack.dev.js ├── phpunit.xml ├── phpunit.integration.xml ├── composer.json ├── tests ├── bootstrap.php ├── Integration │ └── AppTest.php └── Unit │ └── Controller │ └── PageControllerTest.php ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── new-format-request.md │ └── bug_report.md ├── appinfo ├── app.php └── info.xml ├── lib ├── Migration │ └── AddMimetypeToFilecache.php ├── Listener │ ├── LoadFiles3dScript.php │ └── CSPListener.php └── AppInfo │ └── Application.php ├── webpack.common.js ├── CHANGELOG.md ├── src ├── main.js └── components │ └── Files3d.vue ├── .travis.yml ├── README.md ├── img └── app.svg ├── package.json ├── Makefile ├── COPYING └── composer.lock /templates/content/index.php: -------------------------------------------------------------------------------- 1 |