├── .gitignore ├── LICENSE ├── Main.hs ├── NOTES.org ├── Pages.hs ├── README.md ├── Setup.hs ├── blimp.cabal └── stack.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickt/blimp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickt/blimp/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickt/blimp/HEAD/Main.hs -------------------------------------------------------------------------------- /NOTES.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickt/blimp/HEAD/NOTES.org -------------------------------------------------------------------------------- /Pages.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickt/blimp/HEAD/Pages.hs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickt/blimp/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /blimp.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickt/blimp/HEAD/blimp.cabal -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- 1 | require-stack-version: ">= 1.0.2" 2 | resolver: nightly-2016-07-14 3 | --------------------------------------------------------------------------------