1
0
mirror of https://github.com/thangisme/notes.git synced 2024-10-04 19:53:42 -04:00

Removed indentation

This commit is contained in:
Stefano Borini 2019-03-09 18:02:35 +00:00
parent b82b1a86d3
commit 2328407405

View File

@ -62,9 +62,9 @@
<ul>
{% for child in children_list %}
{% if child.parent == page.title and child.title != page.title %}
<li>
<a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %}
</li>
<li>
<a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>