klein/examples/template3.html

9 lines
No EOL
153 B
HTML

{% macro hello(name) %}
<em>hello, {{ name }} {{! name }}<em>
{% endmacro %}
<div>
{% for name in names %}
{{ hello(name) }}
{% endfor %}
</div>