diff options
-rw-r--r-- | theme/templates/website/includes/summary.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/theme/templates/website/includes/summary.html b/theme/templates/website/includes/summary.html index 5f09e13..6aa523b 100644 --- a/theme/templates/website/includes/summary.html +++ b/theme/templates/website/includes/summary.html @@ -38,10 +38,10 @@ <ul class="summary"> {% set _divider = false %} {% if options.links.sidebar %} - {% for link in options.links.sidebar %} + {% for linkTitle, link in options.links.sidebar %} {% set _divider = true %} <li> - <a href="{{ options.links.sidebar[loop.key] }}" target="blank" class="custom-link">{{ loop.key }}</a> + <a href="{{ link }}" target="blank" class="custom-link">{{ linkTitle }}</a> </li> {% endfor %} {% endif %} |