├── .gitignore ├── LICENSE ├── README.md ├── simple.html └── templet.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itorr/templet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itorr/templet/HEAD/README.md -------------------------------------------------------------------------------- /simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itorr/templet/HEAD/simple.html -------------------------------------------------------------------------------- /templet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itorr/templet/HEAD/templet.js --------------------------------------------------------------------------------