├── .eslintignore ├── .eslintrc.js ├── .github ├── pull_request_template.md └── workflows │ ├── cleanup-on-create.yaml │ └── main.yaml ├── .gitignore ├── .hlxignore ├── .renovaterc.json ├── .stylelintrc.json ├── 404.html ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── blocks ├── accordion │ ├── accordion.css │ └── accordion.js ├── cards │ ├── cards.css │ └── cards.js ├── carousel │ ├── carousel.css │ └── carousel.js ├── columns │ ├── columns.css │ └── columns.js ├── embed │ ├── embed.css │ └── embed.js ├── footer │ ├── footer.css │ └── footer.js ├── form │ ├── form.css │ └── form.js ├── fragment │ ├── fragment.css │ └── fragment.js ├── header │ ├── header.css │ └── header.js ├── hero │ ├── hero.css │ └── hero.js ├── modal │ ├── modal.css │ └── modal.js ├── quote │ ├── quote.css │ └── quote.js ├── search │ ├── search.css │ └── search.js ├── table │ ├── table.css │ └── table.js ├── tabs │ ├── tabs.css │ └── tabs.js └── video │ ├── video.css │ └── video.js ├── favicon.ico ├── fonts ├── roboto-bold.woff2 ├── roboto-condensed-bold.woff2 ├── roboto-medium.woff2 └── roboto-regular.woff2 ├── fstab.yaml ├── head.html ├── icons └── search.svg ├── package.json ├── scripts ├── aem.js ├── delayed.js ├── placeholders.js └── scripts.js └── styles ├── fonts.css ├── lazy-styles.css └── styles.css /.eslintignore: -------------------------------------------------------------------------------- 1 | helix-importer-ui -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cleanup-on-create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/.github/workflows/cleanup-on-create.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.hlxignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/.hlxignore -------------------------------------------------------------------------------- /.renovaterc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/.renovaterc.json -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["stylelint-config-standard"] 3 | } -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/404.html -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/README.md -------------------------------------------------------------------------------- /blocks/accordion/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/accordion/accordion.css -------------------------------------------------------------------------------- /blocks/accordion/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/accordion/accordion.js -------------------------------------------------------------------------------- /blocks/cards/cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/cards/cards.css -------------------------------------------------------------------------------- /blocks/cards/cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/cards/cards.js -------------------------------------------------------------------------------- /blocks/carousel/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/carousel/carousel.css -------------------------------------------------------------------------------- /blocks/carousel/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/carousel/carousel.js -------------------------------------------------------------------------------- /blocks/columns/columns.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/columns/columns.css -------------------------------------------------------------------------------- /blocks/columns/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/columns/columns.js -------------------------------------------------------------------------------- /blocks/embed/embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/embed/embed.css -------------------------------------------------------------------------------- /blocks/embed/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/embed/embed.js -------------------------------------------------------------------------------- /blocks/footer/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/footer/footer.css -------------------------------------------------------------------------------- /blocks/footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/footer/footer.js -------------------------------------------------------------------------------- /blocks/form/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/form/form.css -------------------------------------------------------------------------------- /blocks/form/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/form/form.js -------------------------------------------------------------------------------- /blocks/fragment/fragment.css: -------------------------------------------------------------------------------- 1 | /* stylelint-disable no-empty-source */ 2 | -------------------------------------------------------------------------------- /blocks/fragment/fragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/fragment/fragment.js -------------------------------------------------------------------------------- /blocks/header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/header/header.css -------------------------------------------------------------------------------- /blocks/header/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/header/header.js -------------------------------------------------------------------------------- /blocks/hero/hero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/hero/hero.css -------------------------------------------------------------------------------- /blocks/hero/hero.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blocks/modal/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/modal/modal.css -------------------------------------------------------------------------------- /blocks/modal/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/modal/modal.js -------------------------------------------------------------------------------- /blocks/quote/quote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/quote/quote.css -------------------------------------------------------------------------------- /blocks/quote/quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/quote/quote.js -------------------------------------------------------------------------------- /blocks/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/search/search.css -------------------------------------------------------------------------------- /blocks/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/search/search.js -------------------------------------------------------------------------------- /blocks/table/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/table/table.css -------------------------------------------------------------------------------- /blocks/table/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/table/table.js -------------------------------------------------------------------------------- /blocks/tabs/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/tabs/tabs.css -------------------------------------------------------------------------------- /blocks/tabs/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/tabs/tabs.js -------------------------------------------------------------------------------- /blocks/video/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/video/video.css -------------------------------------------------------------------------------- /blocks/video/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/blocks/video/video.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/roboto-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/fonts/roboto-bold.woff2 -------------------------------------------------------------------------------- /fonts/roboto-condensed-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/fonts/roboto-condensed-bold.woff2 -------------------------------------------------------------------------------- /fonts/roboto-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/fonts/roboto-medium.woff2 -------------------------------------------------------------------------------- /fonts/roboto-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/fonts/roboto-regular.woff2 -------------------------------------------------------------------------------- /fstab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/fstab.yaml -------------------------------------------------------------------------------- /head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/head.html -------------------------------------------------------------------------------- /icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/icons/search.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/package.json -------------------------------------------------------------------------------- /scripts/aem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/scripts/aem.js -------------------------------------------------------------------------------- /scripts/delayed.js: -------------------------------------------------------------------------------- 1 | // add delayed functionality here 2 | -------------------------------------------------------------------------------- /scripts/placeholders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/scripts/placeholders.js -------------------------------------------------------------------------------- /scripts/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/scripts/scripts.js -------------------------------------------------------------------------------- /styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/styles/fonts.css -------------------------------------------------------------------------------- /styles/lazy-styles.css: -------------------------------------------------------------------------------- 1 | /* add global styles that can be loaded post LCP here */ -------------------------------------------------------------------------------- /styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-block-collection/HEAD/styles/styles.css --------------------------------------------------------------------------------