├── .eleventy.js ├── .env ├── .gitignore ├── README.md ├── _data └── webmentions.js ├── _includes └── _note.html ├── functions ├── deploy-succeeded.js ├── micropub-latest.json └── micropub.js ├── index.html ├── netlify.toml ├── notes ├── 2024-05-08-18-23-05.md └── notes.11tydata.js └── package.json /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .netlify 3 | node_modules 4 | *.DS_Store 5 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/README.md -------------------------------------------------------------------------------- /_data/webmentions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/_data/webmentions.js -------------------------------------------------------------------------------- /_includes/_note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/_includes/_note.html -------------------------------------------------------------------------------- /functions/deploy-succeeded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/functions/deploy-succeeded.js -------------------------------------------------------------------------------- /functions/micropub-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/functions/micropub-latest.json -------------------------------------------------------------------------------- /functions/micropub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/functions/micropub.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/index.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/netlify.toml -------------------------------------------------------------------------------- /notes/2024-05-08-18-23-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/notes/2024-05-08-18-23-05.md -------------------------------------------------------------------------------- /notes/notes.11tydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/notes/notes.11tydata.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdesro/posse-with-11ty/HEAD/package.json --------------------------------------------------------------------------------