├── .gitignore ├── README.md ├── _components └── my-counter.webc ├── _includes └── layout.webc ├── eleventy.config.js ├── index.webc ├── netlify.toml └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | node_modules 3 | package-lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/demo-webc-counter/HEAD/README.md -------------------------------------------------------------------------------- /_components/my-counter.webc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/demo-webc-counter/HEAD/_components/my-counter.webc -------------------------------------------------------------------------------- /_includes/layout.webc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/demo-webc-counter/HEAD/_includes/layout.webc -------------------------------------------------------------------------------- /eleventy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/demo-webc-counter/HEAD/eleventy.config.js -------------------------------------------------------------------------------- /index.webc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/demo-webc-counter/HEAD/index.webc -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/demo-webc-counter/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/demo-webc-counter/HEAD/package.json --------------------------------------------------------------------------------