├── .editorconfig ├── .eleventy.js ├── .eleventyignore ├── .env.example ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .npmignore ├── README.md ├── _includes └── base.njk ├── changelog.md ├── config ├── index.js └── queries.js ├── demo ├── .eleventy.js ├── package.json └── src │ ├── _includes │ └── base.njk │ ├── index.njk │ └── page.njk ├── package.json └── src ├── articles.js ├── collections.js ├── pages.js ├── products.js └── shop.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.eleventyignore: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | _site 3 | package-lock.json 4 | .env 5 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | index.md 2 | _includes 3 | _site -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/README.md -------------------------------------------------------------------------------- /_includes/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/_includes/base.njk -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/changelog.md -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/config/index.js -------------------------------------------------------------------------------- /config/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/config/queries.js -------------------------------------------------------------------------------- /demo/.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/demo/.eleventy.js -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/src/_includes/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/demo/src/_includes/base.njk -------------------------------------------------------------------------------- /demo/src/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/demo/src/index.njk -------------------------------------------------------------------------------- /demo/src/page.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/demo/src/page.njk -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/package.json -------------------------------------------------------------------------------- /src/articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/src/articles.js -------------------------------------------------------------------------------- /src/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/src/collections.js -------------------------------------------------------------------------------- /src/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/src/pages.js -------------------------------------------------------------------------------- /src/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/src/products.js -------------------------------------------------------------------------------- /src/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleatherman/eleventy-plugin-shopify/HEAD/src/shop.js --------------------------------------------------------------------------------