Creates a template from the given file path.
(path, **keywords)
| 1184 | |
| 1185 | |
| 1186 | def frender(path, **keywords): |
| 1187 | """Creates a template from the given file path.""" |
| 1188 | return Template(open(path, encoding="utf-8").read(), filename=path, **keywords) |
| 1189 | |
| 1190 | |
| 1191 | def compile_templates(root): |