├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── bin └── www ├── package.json ├── public ├── images │ ├── default.png │ ├── sample.png │ ├── shermanIcon112.png │ ├── shermanIcon28.png │ ├── shermanIcon56.png │ ├── talk.png │ └── talk1.png ├── javascripts │ ├── comfy.min.js │ └── comfy.min.js.map └── stylesheets │ └── style.css ├── routes ├── index.js └── users.js └── views ├── error.twig ├── index.twig └── layout.twig /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/bin/www -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/package.json -------------------------------------------------------------------------------- /public/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/public/images/default.png -------------------------------------------------------------------------------- /public/images/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/public/images/sample.png -------------------------------------------------------------------------------- /public/images/shermanIcon112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/public/images/shermanIcon112.png -------------------------------------------------------------------------------- /public/images/shermanIcon28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/public/images/shermanIcon28.png -------------------------------------------------------------------------------- /public/images/shermanIcon56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/public/images/shermanIcon56.png -------------------------------------------------------------------------------- /public/images/talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/public/images/talk.png -------------------------------------------------------------------------------- /public/images/talk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/public/images/talk1.png -------------------------------------------------------------------------------- /public/javascripts/comfy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/public/javascripts/comfy.min.js -------------------------------------------------------------------------------- /public/javascripts/comfy.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/public/javascripts/comfy.min.js.map -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/public/stylesheets/style.css -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/routes/users.js -------------------------------------------------------------------------------- /views/error.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/views/error.twig -------------------------------------------------------------------------------- /views/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/views/index.twig -------------------------------------------------------------------------------- /views/layout.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instafluff/Sherman/HEAD/views/layout.twig --------------------------------------------------------------------------------