diff --git a/_layouts/default.html b/_layouts/default.html index 06662ee1c29b30e819f6786974b0d15ae2268b14..683fa553f6ee63de9e51a81a2c71d2d1e73493aa 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -62,9 +62,15 @@ <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> - </li> + {% if child.summary %} + <li> + <a href="{{ child.url | absolute_url }}">{{ child.title }} - {{ child.summary }}</a> + </li> + {% else %} + <li> + <a href="{{ child.url | absolute_url }}">{{ child.title }}</a> + </li> + {% endif %} {% endif %} {% endfor %} </ul>