PyCharm Format

Clean up indentation and whitespace
This commit is contained in:
Che 2022-05-29 04:21:07 -04:00
parent 74717fe8dc
commit c35d1050e0

View file

@ -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 %}