Skip to content
Snippets Groups Projects
Unverified Commit ea9affe2 authored by Patrick Marsceill's avatar Patrick Marsceill Committed by GitHub
Browse files

Merge pull request #98 from stefanoborini/simplify-template

Introduces the possibility for a summary in the table of contents
parents 418cf1d6 d3f6e590
No related branches found
No related tags found
No related merge requests found
......@@ -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 %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment