A nebula-themed marketing/get site under site/, matching the dashboard (aurora background, glass cards, system fonts — no Google/third-party calls). The app grid + category filters are generated from the repo: scripts/gen-data.mjs reads each containers/<app>/<app>.config and emits the data Eleventy renders. `npm run build` -> static site in dist/. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
11 lines
357 B
Plaintext
11 lines
357 B
Plaintext
<article class="app-card glass" data-cats="{{ app.categories | join(' ') }}">
|
|
<div class="app-card-head">
|
|
<img class="app-ico" src="{{ app.icon }}" alt="" loading="lazy" width="42" height="42">
|
|
<div>
|
|
<h3>{{ app.title }}</h3>
|
|
<span class="app-cat">{{ app.category }}</span>
|
|
</div>
|
|
</div>
|
|
<p>{{ app.description }}</p>
|
|
</article>
|