├── .eleventy.js ├── .eleventyignore ├── .gitignore ├── CNAME └── index.html /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/website/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.eleventyignore: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | _site 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | hypercore-protocol.org -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypercore-protocol/website/HEAD/index.html --------------------------------------------------------------------------------