We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 190fb4c commit 918dbb2Copy full SHA for 918dbb2
1 file changed
docs/templates/base.html
@@ -67,9 +67,9 @@
67
<ul>
68
<li><a href="/components">All components</a></li>
69
{% set components = get_section(path="components/_index.md") %}
70
- {% for page in components.pages %}
71
- <li><a href="/components/#{{ page.slug }}">{{ page.title }}
72
- {% if page.extra.webcomponent | default(value=false) %}<sup title="WebComponent">WC</sup>{% endif %}</a></li>
+ {% for component in components.pages %}
+ <li><a href="/components/#{{ component.slug }}">{{ component.title }}
+ {% if component.extra.webcomponent | default(value=false) %}<sup title="WebComponent">WC</sup>{% endif %}</a></li>
73
{% endfor %}
74
</ul>
75
</details>
0 commit comments