mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-16 12:50:38 -07:00
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]>
20 lines
649 B
Plaintext
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>
|