diff options
author | Dave Poulter <hello@davepoulter.net> | 2019-10-08 11:17:38 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2019-10-08 11:36:19 +0200 |
commit | c82db307b0456e2a901599516b14f0d92e9cc682 (patch) | |
tree | 4970f0824b6cc7ab452e22869329d22a183e4ec6 /testing/templates/literals.html | |
parent | 66274b7c8ef2f47fe479013b9d408ac21a36472d (diff) | |
download | askama-c82db307b0456e2a901599516b14f0d92e9cc682.tar.gz askama-c82db307b0456e2a901599516b14f0d92e9cc682.tar.bz2 askama-c82db307b0456e2a901599516b14f0d92e9cc682.zip |
Add support for boolean literals
Diffstat (limited to 'testing/templates/literals.html')
-rw-r--r-- | testing/templates/literals.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testing/templates/literals.html b/testing/templates/literals.html index b8d8fbe..9d973bb 100644 --- a/testing/templates/literals.html +++ b/testing/templates/literals.html @@ -1 +1,3 @@ {{ "a" }} +{{ true }} +{{ false }} |