├── .gitignore ├── README.md ├── documentation ├── beautiful.jpg ├── beautiful.png ├── cover.jpg ├── flower1.png ├── flower2.png ├── flower3.png ├── flowerstory.png ├── identity.png ├── k2.png ├── poem.png └── screen_commits.png └── poem ├── .bowerrc ├── bower.json └── flowers.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | tools 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/README.md -------------------------------------------------------------------------------- /documentation/beautiful.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/documentation/beautiful.jpg -------------------------------------------------------------------------------- /documentation/beautiful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/documentation/beautiful.png -------------------------------------------------------------------------------- /documentation/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/documentation/cover.jpg -------------------------------------------------------------------------------- /documentation/flower1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/documentation/flower1.png -------------------------------------------------------------------------------- /documentation/flower2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/documentation/flower2.png -------------------------------------------------------------------------------- /documentation/flower3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/documentation/flower3.png -------------------------------------------------------------------------------- /documentation/flowerstory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/documentation/flowerstory.png -------------------------------------------------------------------------------- /documentation/identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/documentation/identity.png -------------------------------------------------------------------------------- /documentation/k2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/documentation/k2.png -------------------------------------------------------------------------------- /documentation/poem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/documentation/poem.png -------------------------------------------------------------------------------- /documentation/screen_commits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/documentation/screen_commits.png -------------------------------------------------------------------------------- /poem/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "tools" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /poem/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/poem/bower.json -------------------------------------------------------------------------------- /poem/flowers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicola/poem-flowers/HEAD/poem/flowers.html --------------------------------------------------------------------------------