├── .gitignore ├── README.md ├── simplegantt.html └── src ├── app.js └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | .aider* 2 | .env 3 | .yaml 4 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerugo/simplegantt/HEAD/README.md -------------------------------------------------------------------------------- /simplegantt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerugo/simplegantt/HEAD/simplegantt.html -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerugo/simplegantt/HEAD/src/app.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerugo/simplegantt/HEAD/src/styles.css --------------------------------------------------------------------------------