├── .gitignore ├── LICENSE.md ├── README.md ├── adminTemplateController.js ├── bin └── global.js ├── fileController.js ├── index.js ├── package.json ├── storefrontTemplateController.js └── templates ├── admin ├── block │ ├── component │ │ ├── component.html.twig.template │ │ ├── component.scss.template │ │ └── index.js.template │ ├── index.js.template │ └── preview │ │ ├── index.js.template │ │ ├── preview.html.twig.template │ │ └── preview.scss.template └── element │ ├── component │ ├── component.html.twig.template │ ├── component.scss.template │ └── index.js.template │ ├── config │ ├── config.html.twig.template │ ├── config.scss.template │ └── index.js.template │ ├── index.js.template │ └── preview │ ├── index.js.template │ ├── preview.html.twig.template │ └── preview.scss.template └── storefront └── storefront.html.twig.template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/README.md -------------------------------------------------------------------------------- /adminTemplateController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/adminTemplateController.js -------------------------------------------------------------------------------- /bin/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/bin/global.js -------------------------------------------------------------------------------- /fileController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/fileController.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/package.json -------------------------------------------------------------------------------- /storefrontTemplateController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/storefrontTemplateController.js -------------------------------------------------------------------------------- /templates/admin/block/component/component.html.twig.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/block/component/component.html.twig.template -------------------------------------------------------------------------------- /templates/admin/block/component/component.scss.template: -------------------------------------------------------------------------------- 1 | .##class## { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /templates/admin/block/component/index.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/block/component/index.js.template -------------------------------------------------------------------------------- /templates/admin/block/index.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/block/index.js.template -------------------------------------------------------------------------------- /templates/admin/block/preview/index.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/block/preview/index.js.template -------------------------------------------------------------------------------- /templates/admin/block/preview/preview.html.twig.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/block/preview/preview.html.twig.template -------------------------------------------------------------------------------- /templates/admin/block/preview/preview.scss.template: -------------------------------------------------------------------------------- 1 | .##class## { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /templates/admin/element/component/component.html.twig.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/element/component/component.html.twig.template -------------------------------------------------------------------------------- /templates/admin/element/component/component.scss.template: -------------------------------------------------------------------------------- 1 | .##class## { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /templates/admin/element/component/index.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/element/component/index.js.template -------------------------------------------------------------------------------- /templates/admin/element/config/config.html.twig.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/element/config/config.html.twig.template -------------------------------------------------------------------------------- /templates/admin/element/config/config.scss.template: -------------------------------------------------------------------------------- 1 | .##class## { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /templates/admin/element/config/index.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/element/config/index.js.template -------------------------------------------------------------------------------- /templates/admin/element/index.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/element/index.js.template -------------------------------------------------------------------------------- /templates/admin/element/preview/index.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/element/preview/index.js.template -------------------------------------------------------------------------------- /templates/admin/element/preview/preview.html.twig.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/admin/element/preview/preview.html.twig.template -------------------------------------------------------------------------------- /templates/admin/element/preview/preview.scss.template: -------------------------------------------------------------------------------- 1 | .##class## { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /templates/storefront/storefront.html.twig.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peeet93/shopware-cms-helper/HEAD/templates/storefront/storefront.html.twig.template --------------------------------------------------------------------------------