Don't name a variable like the macro it's in, Jinja 2.1 doesn't like it.

This commit is contained in:
Georg Brandl 2010-01-08 18:47:15 +01:00
parent ae4099e79c
commit 5302829443

View File

@ -48,8 +48,8 @@
{%- endblock %}
{%- if sidebars %}
{#- new style sidebar: explicitly include/exclude templates #}
{%- for sidebar in sidebars %}
{%- include sidebar %}
{%- for sidebartemplate in sidebars %}
{%- include sidebartemplate %}
{%- endfor %}
{%- else %}
{#- old style sidebars: using blocks -- should be deprecated #}