Skip to content

Instantly share code, notes, and snippets.

@Elizaveta239
Created April 8, 2016 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Elizaveta239/3a9bf42de93c28a75a4b22b61b49148c to your computer and use it in GitHub Desktop.
Save Elizaveta239/3a9bf42de93c28a75a4b22b61b49148c to your computer and use it in GitHub Desktop.
<html>
<title>Test 2</title>
<body>
Hello {{ name }}!
{% macro fun() %}
{% set res = 9 %}
{{ res }}
{% endmacro %}
{% block head %}
{% for x in seq %}
{% set res = 23 %}
{{ fun() }}
{{ res }}
{% endfor %}
{% endblock %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment