├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── pack.pl ├── prolog └── st │ ├── st_escape.pl │ ├── st_expr.pl │ ├── st_file.pl │ ├── st_funs.pl │ ├── st_parse.pl │ ├── st_render.pl │ ├── st_tokens.pl │ └── st_white.pl └── tests ├── blocks.pl ├── div_slot.html ├── div_slot_scoped.html ├── expr.pl ├── file.pl ├── funs.pl ├── included.html ├── included_variable.html ├── point.pl ├── render.pl ├── semblance_tokens.pl ├── tests.pl ├── tokens.pl └── user_defined_tokens.pl /.gitignore: -------------------------------------------------------------------------------- 1 | doc 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/README.md -------------------------------------------------------------------------------- /pack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/pack.pl -------------------------------------------------------------------------------- /prolog/st/st_escape.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/prolog/st/st_escape.pl -------------------------------------------------------------------------------- /prolog/st/st_expr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/prolog/st/st_expr.pl -------------------------------------------------------------------------------- /prolog/st/st_file.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/prolog/st/st_file.pl -------------------------------------------------------------------------------- /prolog/st/st_funs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/prolog/st/st_funs.pl -------------------------------------------------------------------------------- /prolog/st/st_parse.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/prolog/st/st_parse.pl -------------------------------------------------------------------------------- /prolog/st/st_render.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/prolog/st/st_render.pl -------------------------------------------------------------------------------- /prolog/st/st_tokens.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/prolog/st/st_tokens.pl -------------------------------------------------------------------------------- /prolog/st/st_white.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/prolog/st/st_white.pl -------------------------------------------------------------------------------- /tests/blocks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/blocks.pl -------------------------------------------------------------------------------- /tests/div_slot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/div_slot.html -------------------------------------------------------------------------------- /tests/div_slot_scoped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/div_slot_scoped.html -------------------------------------------------------------------------------- /tests/expr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/expr.pl -------------------------------------------------------------------------------- /tests/file.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/file.pl -------------------------------------------------------------------------------- /tests/funs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/funs.pl -------------------------------------------------------------------------------- /tests/included.html: -------------------------------------------------------------------------------- 1 | i -------------------------------------------------------------------------------- /tests/included_variable.html: -------------------------------------------------------------------------------- 1 | {{= a }} -------------------------------------------------------------------------------- /tests/point.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/point.pl -------------------------------------------------------------------------------- /tests/render.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/render.pl -------------------------------------------------------------------------------- /tests/semblance_tokens.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/semblance_tokens.pl -------------------------------------------------------------------------------- /tests/tests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/tests.pl -------------------------------------------------------------------------------- /tests/tokens.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/tokens.pl -------------------------------------------------------------------------------- /tests/user_defined_tokens.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rla/simple-template/HEAD/tests/user_defined_tokens.pl --------------------------------------------------------------------------------