mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 20:19:13 +00:00
* Revise docs to clarify installation guidance * Fix broken link * Clarify `:where(:root)`, add CSS part example
26 lines
741 B
Plaintext
26 lines
741 B
Plaintext
---
|
|
layout: page-outline
|
|
tags: ["overview"]
|
|
---
|
|
{% set forTag = forTag or (page.url | split('/') | last) %}
|
|
{% if description %}
|
|
<div class="index-summary">{{ description | markdown | safe }}</div>
|
|
{% endif %}
|
|
|
|
<div id="block-filter">
|
|
<wa-input type="search" placeholder="Search {{ title }}" clearable autofocus>
|
|
<wa-icon slot="prefix" name="search"></wa-icon>
|
|
</wa-input>
|
|
</div>
|
|
|
|
{% set allPages = collections[forTag] %}
|
|
{% include "grouped-pages.njk" %}
|
|
|
|
<link href="/assets/styles/filter.css" rel="stylesheet">
|
|
<script type="module" src="/assets/scripts/filter.js"></script>
|
|
|
|
{% if content | trim %}
|
|
<wa-divider style="--spacing: var(--wa-space-3xl)"></wa-divider> {# Temp fix for spacing issue #}
|
|
{{ content | safe }}
|
|
{% endif %}
|