├── .gitignore ├── LICENSE ├── README.md ├── project.clj ├── src └── clj_template │ ├── core.clj │ ├── html.clj │ ├── html5.clj │ ├── util.clj │ └── util │ └── bootstrap.clj └── test └── clj_template └── core_test.clj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennonyork/clj-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennonyork/clj-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennonyork/clj-template/HEAD/README.md -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennonyork/clj-template/HEAD/project.clj -------------------------------------------------------------------------------- /src/clj_template/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennonyork/clj-template/HEAD/src/clj_template/core.clj -------------------------------------------------------------------------------- /src/clj_template/html.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennonyork/clj-template/HEAD/src/clj_template/html.clj -------------------------------------------------------------------------------- /src/clj_template/html5.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennonyork/clj-template/HEAD/src/clj_template/html5.clj -------------------------------------------------------------------------------- /src/clj_template/util.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennonyork/clj-template/HEAD/src/clj_template/util.clj -------------------------------------------------------------------------------- /src/clj_template/util/bootstrap.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennonyork/clj-template/HEAD/src/clj_template/util/bootstrap.clj -------------------------------------------------------------------------------- /test/clj_template/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brennonyork/clj-template/HEAD/test/clj_template/core_test.clj --------------------------------------------------------------------------------