diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-01-11 22:06:37 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-01-11 22:06:37 +0100 |
| commit | ea7c2a7482b937c4d391402b7a89fb7b9c245992 (patch) | |
| tree | 562bbf42559cac18d0c566dcd77c64fbfcf36523 /README.md | |
| parent | d3c3ae47a2937bf0ace994a4bc9928cd2f3605de (diff) | |
| download | temper-master.tar.gz temper-master.tar.bz2 temper-master.zip | |
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -21,8 +21,8 @@ Put the result of a form in the template with `<%=`. ```html <ul> - <% (dotimes (_ 10)) %> - <li> <%= i %> </li> + <% (dotimes (n 10)) %> + <li> <%= n %> </li> <% ) %> </ul> ``` @@ -49,3 +49,6 @@ Use the `render` function to include a template in another. and check if `about.lisp.html` exists * [ ] Makefile to compile and install * [ ] escape interpolated value +* [ ] file/directory command line arguments +* [ ] passing template variable in command line +* [ ] extends a base template (like Django) |
