mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 12:09:26 +00:00
* fix alpha builds * Update docs/_includes/sidebar-group.njk Co-authored-by: Lea Verou <lea@verou.me> * Update docs/_includes/sidebar-group.njk Co-authored-by: Lea Verou <lea@verou.me> --------- Co-authored-by: Lea Verou <lea@verou.me>
23 lines
817 B
Plaintext
23 lines
817 B
Plaintext
{# Some collections (like "patterns") will not have any items in the alpha build for example. So this checks to make sure the collection exists. #}
|
|
{% if collections[tag] -%}
|
|
<wa-details {{ (('/' + tag + '/') in page.url) | attr('open') }}>
|
|
<h2 slot="summary">
|
|
{% set groupUrl %}/docs/{{ tag }}/{% endset %}
|
|
{% if groupUrl | getCollectionItemFromUrl %}
|
|
<a href="{{ groupUrl }}" title="Overview">{{ title or (tag | capitalize) }}
|
|
<wa-icon name="grid-2"></wa-icon>
|
|
</a>
|
|
{% else %}
|
|
{{ title or (tag | capitalize) }}
|
|
{% endif %}
|
|
</h2>
|
|
<ul>
|
|
{% for page in collections[tag] | sort %}
|
|
{% if not page.data.parent -%}
|
|
{% include 'sidebar-link.njk' %}
|
|
{%- endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</wa-details>
|
|
{%- endif %}
|