Skip to content

Instantly share code, notes, and snippets.

@jesseyv
jesseyv / gist:1175064
Created August 27, 2011 06:24
Tornado Template Syntax
Basic Output
Hello, {{ current_user.name }}
Basic Logic
{% if not current_user %}
You're not logged in!
{% elif current_user and curent_user.is_admin %}
Good day, sir!
{% else %}