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