mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-24 07:30:12 +01:00
Drop 'with' in templates to be compatible with Jinja < 2.9
This commit is contained in:
parent
6033519d15
commit
cecd1f1d7c
@ -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 %}
|
||||
{% set path = base + "-" + loop.index | string %}
|
||||
{% include "partials/nav-item.html" %}
|
||||
{% endwith %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
|
@ -16,9 +16,8 @@
|
||||
{% endif %}
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
{% for nav_item in nav %}
|
||||
{% with path = "nav-" + loop.index | string %}
|
||||
{% set path = "nav-" + loop.index | string %}
|
||||
{% include "partials/nav-item.html" %}
|
||||
{% endwith %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
|
@ -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 %}
|
||||
{% set path = base + "-" + loop.index | string %}
|
||||
{% include "partials/nav-item.html" %}
|
||||
{% endwith %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
|
@ -39,9 +39,8 @@
|
||||
{% endif %}
|
||||
<ul class="md-nav__list" data-md-scrollfix>
|
||||
{% for nav_item in nav %}
|
||||
{% with path = "nav-" + loop.index | string %}
|
||||
{% set path = "nav-" + loop.index | string %}
|
||||
{% include "partials/nav-item.html" %}
|
||||
{% endwith %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
|
Loading…
Reference in New Issue
Block a user