Created
December 24, 2018 08:59
-
-
Save evanxg852000/0e6eed405333f3c421efa0ce0bfbb498 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends main.html %} | |
{% block content %} | |
{% if (test) %} | |
truthy eval | |
{% else %} | |
falsy eval | |
{% endif %} | |
<ul> | |
{% for (let it of items) %} | |
<li>#{{ 'Name' }} : {{ it }}</li> | |
{% endfor %} | |
</ul> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment