PyCharm Format
Clean up indentation and whitespace
This commit is contained in:
parent
74717fe8dc
commit
c35d1050e0
1 changed files with 113 additions and 110 deletions
|
@ -55,7 +55,8 @@
|
||||||
|
|
||||||
<input class="tree-toggle" type="checkbox" id="{{ subsection.title | slugify }}"
|
<input class="tree-toggle" type="checkbox" id="{{ subsection.title | slugify }}"
|
||||||
{% if current_path is starting_with(subsection.path) %}checked{% endif %}/>
|
{% if current_path is starting_with(subsection.path) %}checked{% endif %}/>
|
||||||
<label class="tree-toggle-label" for="{{ subsection.title | slugify }}">{{ subsection.title }}</label>
|
<label class="tree-toggle-label"
|
||||||
|
for="{{ subsection.title | slugify }}">{{ subsection.title }}</label>
|
||||||
|
|
||||||
<ul class="subtree">
|
<ul class="subtree">
|
||||||
{% for page in subsection.pages %}
|
{% for page in subsection.pages %}
|
||||||
|
@ -85,7 +86,9 @@
|
||||||
{% if h2.children %}
|
{% if h2.children %}
|
||||||
<ul>
|
<ul>
|
||||||
{% for h3 in h2.children %}
|
{% for h3 in h2.children %}
|
||||||
<li><a href="{{ h3.permalink | safe }}">{{ h3.title }}</a></li>
|
<li>
|
||||||
|
<a href="{{ h3.permalink | safe }}">{{ h3.title }}</a>
|
||||||
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue