Open
Description
Hello,
is this library compatible with Jinja? I have been able to use it with Django templates just fine, but when I wanted to try it in a Jinja template this part stumped me:
{% load django_simple_nav %}
{% block navigation %}
<nav>
{% django_simple_nav "path.to.MainNav" %}
</nav>
{% endblock navigation %}
I cannot use load
in Jinja, so I guess there must be another way to get django_simple_nav
into the template. Is it possible to use Jinja, and if not, then what would it take to get Jinja compatibility?