Merge pull request #98 from stefanoborini/simplify-template

Introduces the possibility for a summary in the table of contents
This commit is contained in:
Patrick Marsceill
2019-09-09 15:01:05 -04:00
committed by GitHub

View File

@@ -73,7 +73,7 @@ layout: table_wrappers
{% 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>
<a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %}
</li>
{% endif %}
{% endfor %}