1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 19:38:27 +02:00

Drop 'with' in templates to be compatible with Jinja < 2.9

This commit is contained in:
squidfunk 2017-01-10 00:15:44 +01:00
parent 6033519d15
commit cecd1f1d7c
4 changed files with 9 additions and 13 deletions

View File

@ -15,9 +15,8 @@
<ul class="md-nav__list" data-md-scrollfix>
{% set base = path %}
{% for nav_item in nav_item.children %}
{% with path = base + "-" + loop.index | string %}
{% include "partials/nav-item.html" %}
{% endwith %}
{% set path = base + "-" + loop.index | string %}
{% include "partials/nav-item.html" %}
{% endfor %}
</ul>
</nav>

View File

@ -16,9 +16,8 @@
{% endif %}
<ul class="md-nav__list" data-md-scrollfix>
{% for nav_item in nav %}
{% with path = "nav-" + loop.index | string %}
{% include "partials/nav-item.html" %}
{% endwith %}
{% set path = "nav-" + loop.index | string %}
{% include "partials/nav-item.html" %}
{% endfor %}
</ul>
</nav>

View File

@ -42,13 +42,12 @@
{{ nav_item.title}}
</label>
<ul class="md-nav__list" data-md-scrollfix>
{% set base = path %}
<!-- Render nested item list -->
{% set base = path %}
{% for nav_item in nav_item.children %}
{% with path = base + "-" + loop.index | string %}
{% include "partials/nav-item.html" %}
{% endwith %}
{% set path = base + "-" + loop.index | string %}
{% include "partials/nav-item.html" %}
{% endfor %}
</ul>
</nav>

View File

@ -39,9 +39,8 @@
{% endif %}
<ul class="md-nav__list" data-md-scrollfix>
{% for nav_item in nav %}
{% with path = "nav-" + loop.index | string %}
{% include "partials/nav-item.html" %}
{% endwith %}
{% set path = "nav-" + loop.index | string %}
{% include "partials/nav-item.html" %}
{% endfor %}
</ul>
</nav>