diff --git a/src/_includes/main/links.njk b/src/_includes/main/links.njk index 8bfd415c..cd0fbf24 100644 --- a/src/_includes/main/links.njk +++ b/src/_includes/main/links.njk @@ -25,16 +25,21 @@ isContentDivided: true
-{% for group in linkGroups %} + {% for group in linkGroups %}
- {% headingAnchor 2 %} - {{ group.data.title }} - {% endheadingAnchor %} + {% headingAnchor 2 %}{{ group.data.title }}{% endheadingAnchor %} + + {% if group.data.toc %} +

Table of Contents

+ {{ group.templateContent | toc | safe }} + {% endif %} + {{ group.templateContent | safe }} - {% if group.data.updated %} + {% if group.data.updated %}

(This {{ group.data.title }} list was last updated on )

- {% endif %} + {% endif %} + Back to tabs
{%- endfor %}