Files
liquidjs/docs/themes/navy/layout/partial/home-section.swig
T
Yang JunandCursor ff52a00ac4 docs(readme): playground GIF, used-by grid, and docs homepage sync
Add data/used-by.json with build:used-by for README and docs homepage, playground demo capture, and shared home-section layout. Used by lists products with site logos; Financial Support keeps org and individual sponsors.

Co-authored-by: Cursor <[email protected]>
2026-06-22 19:54:46 +08:00

20 lines
649 B
Plaintext

<div id="{{ wrapId }}-wrap" class="home-section home-section--{{ variant }}">
<div class="wrapper">
<div class="inner inner-content">
<div class="section-header">
<h3>{{ title }}</h3>
<p class="description">{{ description | safe }}</p>
</div>
<div class="contributors">
{% if contentPartial == 'used-by' %}
{{ partial('partial/used-by') }}
{% elif contentPartial == 'financial-contributors' %}
{{ partial('partial/financial-contributors') }}
{% else %}
{{ partial('partial/all-contributors') }}
{% endif %}
</div>
</div>
</div>
</div>