mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 20:19:13 +00:00
17 lines
531 B
Plaintext
17 lines
531 B
Plaintext
{% if not (isAlpha and page.data.noAlpha) and page.fileSlug != tag and not page.data.unlisted -%}
|
|
<li>
|
|
<a href="{{ page.url }}">{{ page.data.title }}</a>
|
|
{% if page.data.status == 'experimental' %}<wa-icon name="flask"></wa-icon>{% endif %}
|
|
{% if page.data.isPro %}<wa-badge class="pro">PRO</wa-badge>{% endif %}
|
|
|
|
{% set children = page.data.children %}
|
|
{% if children.length > 0 %}
|
|
<ul>
|
|
{% for page in children %}
|
|
{% include 'sidebar-link.njk' %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</li>
|
|
{%- endif %}
|