Is there syntax highlight for Jinja2 templates in Sublime Text? By Jinja2 I mean:
{% extends "template.html" %}
{% block content %}
{% if task == 'archimed_spiral' %}
{% include 'archimed.html %}
{% elif task == 'gcd' %}
{% endif %}
{% endblock %}
I believe it is based on Python. And it can be pretty hard to read.