├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── buddy.yml ├── cms ├── bootstrap.php ├── composer.json ├── config │ ├── app.console.php │ ├── app.php │ ├── app.web.php │ ├── db.php │ ├── fastcgi-cache-bust.php │ ├── general.php │ ├── htmlpurifier │ │ └── Default.json │ ├── project │ │ ├── entryTypes │ │ │ ├── errors--faceb3ed-6771-453c-9c2a-aa330847f6db.yaml │ │ │ └── homepage--fb3a8f31-d1cc-4c13-903b-a501f7e51f54.yaml │ │ ├── fieldGroups │ │ │ ├── 94b4d5ac-d7ea-4241-a6cb-92b39f482f99.yaml │ │ │ └── d08a0d16-0e00-49e6-9cd4-465fa2d65d7d.yaml │ │ ├── fields │ │ │ ├── errorHeadline--b8ba7115-3804-4c06-8a96-501963d1fc5c.yaml │ │ │ ├── errorImage--a5cb77be-c4d9-4d3e-88fb-d5384ca13941.yaml │ │ │ └── errorText--e6d658aa-c335-4f15-bbcd-59fe05d9e913.yaml │ │ ├── project.yaml │ │ ├── sections │ │ │ ├── errors--a72bfe0c-3389-4f9f-8ec1-ab318ec10b29.yaml │ │ │ └── homepage--54e60257-f31a-44aa-960e-bbd364197e28.yaml │ │ ├── siteGroups │ │ │ └── f89601e9-4ba9-4a48-9e99-350aa9914912.yaml │ │ ├── sites │ │ │ └── default--5da841b1-ca0d-46ff-8bb1-04d6c889ac54.yaml │ │ └── volumes │ │ │ └── site--5c642d7e-b16b-4836-9575-668d75d242e5.yaml │ ├── redactor │ │ ├── Default.json │ │ └── Simple.json │ ├── routes.php │ ├── seomatic-config │ │ └── globalmeta │ │ │ └── Creator.php │ └── vite.php ├── craft ├── craft.bat ├── example.env ├── modules │ └── sitemodule │ │ ├── .craftplugin │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── src │ │ ├── SiteModule.php │ │ ├── assetbundles │ │ └── sitemodule │ │ │ ├── SiteModuleAsset.php │ │ │ └── dist │ │ │ ├── css │ │ │ └── SiteModule.css │ │ │ ├── img │ │ │ └── SiteModule-icon.svg │ │ │ └── js │ │ │ └── SiteModule.js │ │ ├── config.php │ │ ├── helpers │ │ └── Config.php │ │ ├── services │ │ └── Helper.php │ │ ├── translations │ │ └── en │ │ │ └── site-module.php │ │ └── variables │ │ └── SiteVariable.php ├── templates │ ├── .gitkeep │ ├── _boilerplate │ │ ├── _layouts │ │ │ ├── amp-base-html-layout.twig │ │ │ ├── base-ajax-layout.twig │ │ │ ├── base-html-layout.twig │ │ │ └── base-web-layout.twig │ │ └── _partials │ │ │ ├── amp-analytics.twig │ │ │ ├── amp-boilerplate-css.twig │ │ │ ├── amp-head-js.twig │ │ │ ├── body-js.twig │ │ │ ├── critical-css.twig │ │ │ ├── head-js.twig │ │ │ ├── head-meta.twig │ │ │ ├── register-service-worker.twig │ │ │ └── tab-handler.twig │ ├── _inline-css │ │ └── site-fonts.css │ ├── _inline-js │ │ ├── lazyload-image-shim.js │ │ └── tiny-cookie.min.js │ ├── _layouts │ │ ├── amp-generic-page-layout.twig │ │ ├── error-page-layout.twig │ │ ├── generic-page-layout.twig │ │ └── global-variables.twig │ ├── _macros │ │ └── cookies.twig │ ├── _partials │ │ ├── amp-info-footer.twig │ │ ├── amp-info-header.twig │ │ ├── amp-inline-css.css │ │ ├── amp-navbar.twig │ │ ├── global-footer.twig │ │ ├── info-footer.twig │ │ ├── info-header.twig │ │ └── navbar.twig │ ├── amp-index.twig │ ├── errors │ │ ├── 404.twig │ │ ├── 503.twig │ │ ├── error.twig │ │ └── offline.twig │ └── index.twig └── web │ ├── .htaccess │ ├── assets │ └── .gitignore │ ├── cpresources │ └── .gitignore │ ├── img │ └── site │ │ └── login-background-image.svg │ ├── index.php │ ├── offline.svg │ └── web.config ├── composer.json ├── db-seed ├── .gitignore └── project--2021-05-16-014155--v3.6.14.sql.gz ├── docker-compose.yml ├── docker-config ├── mariadb │ └── Dockerfile ├── nginx │ ├── Dockerfile │ └── default.conf ├── node-dev-vite │ ├── Dockerfile │ └── npm_install.sh ├── php-dev-craft │ └── Dockerfile ├── php-prod-craft │ ├── Dockerfile │ ├── composer_install.sh │ └── run_queue.sh └── redis │ └── Dockerfile ├── scripts ├── common │ ├── common_db.sh │ ├── common_env.sh │ ├── common_mysql.sh │ ├── common_pgsql.sh │ └── defaults.sh ├── docker_pull_db.sh ├── docker_restore_db.sh └── example.env.sh └── src ├── conf ├── .gitkeep ├── git │ └── hooks │ │ └── post-merge └── nginx │ └── site.com ├── css ├── app.css ├── components │ ├── global.css │ ├── typography.css │ └── webfonts.css ├── pages │ └── homepage.css └── vendor.css ├── img └── favicon-src.png ├── js ├── @types │ └── shims.d.ts ├── app.ts └── utils │ ├── lazy-load-component.js │ └── lazysizes-wrapper.ts ├── public └── logo.png ├── templates └── vue ├── @types ├── confetti.d.ts └── shims-vue.d.ts ├── App.vue └── ConfettiParty.vue /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/README.md -------------------------------------------------------------------------------- /buddy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/buddy.yml -------------------------------------------------------------------------------- /cms/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/bootstrap.php -------------------------------------------------------------------------------- /cms/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/composer.json -------------------------------------------------------------------------------- /cms/config/app.console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/app.console.php -------------------------------------------------------------------------------- /cms/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/app.php -------------------------------------------------------------------------------- /cms/config/app.web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/app.web.php -------------------------------------------------------------------------------- /cms/config/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/db.php -------------------------------------------------------------------------------- /cms/config/fastcgi-cache-bust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/fastcgi-cache-bust.php -------------------------------------------------------------------------------- /cms/config/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/general.php -------------------------------------------------------------------------------- /cms/config/htmlpurifier/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/htmlpurifier/Default.json -------------------------------------------------------------------------------- /cms/config/project/entryTypes/errors--faceb3ed-6771-453c-9c2a-aa330847f6db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/project/entryTypes/errors--faceb3ed-6771-453c-9c2a-aa330847f6db.yaml -------------------------------------------------------------------------------- /cms/config/project/entryTypes/homepage--fb3a8f31-d1cc-4c13-903b-a501f7e51f54.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/project/entryTypes/homepage--fb3a8f31-d1cc-4c13-903b-a501f7e51f54.yaml -------------------------------------------------------------------------------- /cms/config/project/fieldGroups/94b4d5ac-d7ea-4241-a6cb-92b39f482f99.yaml: -------------------------------------------------------------------------------- 1 | name: Common 2 | -------------------------------------------------------------------------------- /cms/config/project/fieldGroups/d08a0d16-0e00-49e6-9cd4-465fa2d65d7d.yaml: -------------------------------------------------------------------------------- 1 | name: Errors 2 | -------------------------------------------------------------------------------- /cms/config/project/fields/errorHeadline--b8ba7115-3804-4c06-8a96-501963d1fc5c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/project/fields/errorHeadline--b8ba7115-3804-4c06-8a96-501963d1fc5c.yaml -------------------------------------------------------------------------------- /cms/config/project/fields/errorImage--a5cb77be-c4d9-4d3e-88fb-d5384ca13941.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/project/fields/errorImage--a5cb77be-c4d9-4d3e-88fb-d5384ca13941.yaml -------------------------------------------------------------------------------- /cms/config/project/fields/errorText--e6d658aa-c335-4f15-bbcd-59fe05d9e913.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/project/fields/errorText--e6d658aa-c335-4f15-bbcd-59fe05d9e913.yaml -------------------------------------------------------------------------------- /cms/config/project/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/project/project.yaml -------------------------------------------------------------------------------- /cms/config/project/sections/errors--a72bfe0c-3389-4f9f-8ec1-ab318ec10b29.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/project/sections/errors--a72bfe0c-3389-4f9f-8ec1-ab318ec10b29.yaml -------------------------------------------------------------------------------- /cms/config/project/sections/homepage--54e60257-f31a-44aa-960e-bbd364197e28.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/project/sections/homepage--54e60257-f31a-44aa-960e-bbd364197e28.yaml -------------------------------------------------------------------------------- /cms/config/project/siteGroups/f89601e9-4ba9-4a48-9e99-350aa9914912.yaml: -------------------------------------------------------------------------------- 1 | name: $SITE_NAME 2 | -------------------------------------------------------------------------------- /cms/config/project/sites/default--5da841b1-ca0d-46ff-8bb1-04d6c889ac54.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/project/sites/default--5da841b1-ca0d-46ff-8bb1-04d6c889ac54.yaml -------------------------------------------------------------------------------- /cms/config/project/volumes/site--5c642d7e-b16b-4836-9575-668d75d242e5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/project/volumes/site--5c642d7e-b16b-4836-9575-668d75d242e5.yaml -------------------------------------------------------------------------------- /cms/config/redactor/Default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/redactor/Default.json -------------------------------------------------------------------------------- /cms/config/redactor/Simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/redactor/Simple.json -------------------------------------------------------------------------------- /cms/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/routes.php -------------------------------------------------------------------------------- /cms/config/seomatic-config/globalmeta/Creator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/seomatic-config/globalmeta/Creator.php -------------------------------------------------------------------------------- /cms/config/vite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/config/vite.php -------------------------------------------------------------------------------- /cms/craft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/craft -------------------------------------------------------------------------------- /cms/craft.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/craft.bat -------------------------------------------------------------------------------- /cms/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/example.env -------------------------------------------------------------------------------- /cms/modules/sitemodule/.craftplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/.craftplugin -------------------------------------------------------------------------------- /cms/modules/sitemodule/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/.gitignore -------------------------------------------------------------------------------- /cms/modules/sitemodule/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/CHANGELOG.md -------------------------------------------------------------------------------- /cms/modules/sitemodule/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/LICENSE.md -------------------------------------------------------------------------------- /cms/modules/sitemodule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/README.md -------------------------------------------------------------------------------- /cms/modules/sitemodule/src/SiteModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/src/SiteModule.php -------------------------------------------------------------------------------- /cms/modules/sitemodule/src/assetbundles/sitemodule/SiteModuleAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/src/assetbundles/sitemodule/SiteModuleAsset.php -------------------------------------------------------------------------------- /cms/modules/sitemodule/src/assetbundles/sitemodule/dist/css/SiteModule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/src/assetbundles/sitemodule/dist/css/SiteModule.css -------------------------------------------------------------------------------- /cms/modules/sitemodule/src/assetbundles/sitemodule/dist/img/SiteModule-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/src/assetbundles/sitemodule/dist/img/SiteModule-icon.svg -------------------------------------------------------------------------------- /cms/modules/sitemodule/src/assetbundles/sitemodule/dist/js/SiteModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/src/assetbundles/sitemodule/dist/js/SiteModule.js -------------------------------------------------------------------------------- /cms/modules/sitemodule/src/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/src/config.php -------------------------------------------------------------------------------- /cms/modules/sitemodule/src/helpers/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/src/helpers/Config.php -------------------------------------------------------------------------------- /cms/modules/sitemodule/src/services/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/src/services/Helper.php -------------------------------------------------------------------------------- /cms/modules/sitemodule/src/translations/en/site-module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/src/translations/en/site-module.php -------------------------------------------------------------------------------- /cms/modules/sitemodule/src/variables/SiteVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/modules/sitemodule/src/variables/SiteVariable.php -------------------------------------------------------------------------------- /cms/templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_layouts/amp-base-html-layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_layouts/amp-base-html-layout.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_layouts/base-ajax-layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_layouts/base-ajax-layout.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_layouts/base-html-layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_layouts/base-html-layout.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_layouts/base-web-layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_layouts/base-web-layout.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_partials/amp-analytics.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_partials/amp-analytics.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_partials/amp-boilerplate-css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_partials/amp-boilerplate-css.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_partials/amp-head-js.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_partials/amp-head-js.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_partials/body-js.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_partials/body-js.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_partials/critical-css.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_partials/critical-css.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_partials/head-js.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_partials/head-js.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_partials/head-meta.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_partials/head-meta.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_partials/register-service-worker.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_partials/register-service-worker.twig -------------------------------------------------------------------------------- /cms/templates/_boilerplate/_partials/tab-handler.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_boilerplate/_partials/tab-handler.twig -------------------------------------------------------------------------------- /cms/templates/_inline-css/site-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_inline-css/site-fonts.css -------------------------------------------------------------------------------- /cms/templates/_inline-js/lazyload-image-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_inline-js/lazyload-image-shim.js -------------------------------------------------------------------------------- /cms/templates/_inline-js/tiny-cookie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_inline-js/tiny-cookie.min.js -------------------------------------------------------------------------------- /cms/templates/_layouts/amp-generic-page-layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_layouts/amp-generic-page-layout.twig -------------------------------------------------------------------------------- /cms/templates/_layouts/error-page-layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_layouts/error-page-layout.twig -------------------------------------------------------------------------------- /cms/templates/_layouts/generic-page-layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_layouts/generic-page-layout.twig -------------------------------------------------------------------------------- /cms/templates/_layouts/global-variables.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_layouts/global-variables.twig -------------------------------------------------------------------------------- /cms/templates/_macros/cookies.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_macros/cookies.twig -------------------------------------------------------------------------------- /cms/templates/_partials/amp-info-footer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_partials/amp-info-footer.twig -------------------------------------------------------------------------------- /cms/templates/_partials/amp-info-header.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_partials/amp-info-header.twig -------------------------------------------------------------------------------- /cms/templates/_partials/amp-inline-css.css: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | -------------------------------------------------------------------------------- /cms/templates/_partials/amp-navbar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_partials/amp-navbar.twig -------------------------------------------------------------------------------- /cms/templates/_partials/global-footer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_partials/global-footer.twig -------------------------------------------------------------------------------- /cms/templates/_partials/info-footer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_partials/info-footer.twig -------------------------------------------------------------------------------- /cms/templates/_partials/info-header.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_partials/info-header.twig -------------------------------------------------------------------------------- /cms/templates/_partials/navbar.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/_partials/navbar.twig -------------------------------------------------------------------------------- /cms/templates/amp-index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/amp-index.twig -------------------------------------------------------------------------------- /cms/templates/errors/404.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/errors/404.twig -------------------------------------------------------------------------------- /cms/templates/errors/503.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/errors/503.twig -------------------------------------------------------------------------------- /cms/templates/errors/error.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/errors/error.twig -------------------------------------------------------------------------------- /cms/templates/errors/offline.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/errors/offline.twig -------------------------------------------------------------------------------- /cms/templates/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/templates/index.twig -------------------------------------------------------------------------------- /cms/web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/web/.htaccess -------------------------------------------------------------------------------- /cms/web/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /cms/web/cpresources/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /cms/web/img/site/login-background-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/web/img/site/login-background-image.svg -------------------------------------------------------------------------------- /cms/web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/web/index.php -------------------------------------------------------------------------------- /cms/web/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/web/offline.svg -------------------------------------------------------------------------------- /cms/web/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/cms/web/web.config -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/composer.json -------------------------------------------------------------------------------- /db-seed/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /db-seed/project--2021-05-16-014155--v3.6.14.sql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/db-seed/project--2021-05-16-014155--v3.6.14.sql.gz -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-config/mariadb/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mariadb:10.5 2 | -------------------------------------------------------------------------------- /docker-config/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/docker-config/nginx/Dockerfile -------------------------------------------------------------------------------- /docker-config/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/docker-config/nginx/default.conf -------------------------------------------------------------------------------- /docker-config/node-dev-vite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/docker-config/node-dev-vite/Dockerfile -------------------------------------------------------------------------------- /docker-config/node-dev-vite/npm_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/docker-config/node-dev-vite/npm_install.sh -------------------------------------------------------------------------------- /docker-config/php-dev-craft/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/docker-config/php-dev-craft/Dockerfile -------------------------------------------------------------------------------- /docker-config/php-prod-craft/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/docker-config/php-prod-craft/Dockerfile -------------------------------------------------------------------------------- /docker-config/php-prod-craft/composer_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/docker-config/php-prod-craft/composer_install.sh -------------------------------------------------------------------------------- /docker-config/php-prod-craft/run_queue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/docker-config/php-prod-craft/run_queue.sh -------------------------------------------------------------------------------- /docker-config/redis/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM redis:5-alpine 2 | -------------------------------------------------------------------------------- /scripts/common/common_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/scripts/common/common_db.sh -------------------------------------------------------------------------------- /scripts/common/common_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/scripts/common/common_env.sh -------------------------------------------------------------------------------- /scripts/common/common_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/scripts/common/common_mysql.sh -------------------------------------------------------------------------------- /scripts/common/common_pgsql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/scripts/common/common_pgsql.sh -------------------------------------------------------------------------------- /scripts/common/defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/scripts/common/defaults.sh -------------------------------------------------------------------------------- /scripts/docker_pull_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/scripts/docker_pull_db.sh -------------------------------------------------------------------------------- /scripts/docker_restore_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/scripts/docker_restore_db.sh -------------------------------------------------------------------------------- /scripts/example.env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/scripts/example.env.sh -------------------------------------------------------------------------------- /src/conf/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/conf/git/hooks/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/conf/git/hooks/post-merge -------------------------------------------------------------------------------- /src/conf/nginx/site.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/conf/nginx/site.com -------------------------------------------------------------------------------- /src/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/css/app.css -------------------------------------------------------------------------------- /src/css/components/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/css/components/global.css -------------------------------------------------------------------------------- /src/css/components/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/css/components/typography.css -------------------------------------------------------------------------------- /src/css/components/webfonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/css/components/webfonts.css -------------------------------------------------------------------------------- /src/css/pages/homepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/css/pages/homepage.css -------------------------------------------------------------------------------- /src/css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/css/vendor.css -------------------------------------------------------------------------------- /src/img/favicon-src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/img/favicon-src.png -------------------------------------------------------------------------------- /src/js/@types/shims.d.ts: -------------------------------------------------------------------------------- 1 | declare module "app"; 2 | -------------------------------------------------------------------------------- /src/js/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/js/app.ts -------------------------------------------------------------------------------- /src/js/utils/lazy-load-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/js/utils/lazy-load-component.js -------------------------------------------------------------------------------- /src/js/utils/lazysizes-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/js/utils/lazysizes-wrapper.ts -------------------------------------------------------------------------------- /src/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/public/logo.png -------------------------------------------------------------------------------- /src/templates: -------------------------------------------------------------------------------- 1 | ../cms/templates -------------------------------------------------------------------------------- /src/vue/@types/confetti.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/vue/@types/confetti.d.ts -------------------------------------------------------------------------------- /src/vue/@types/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/vue/@types/shims-vue.d.ts -------------------------------------------------------------------------------- /src/vue/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/vue/App.vue -------------------------------------------------------------------------------- /src/vue/ConfettiParty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nystudio107/craft/HEAD/src/vue/ConfettiParty.vue --------------------------------------------------------------------------------