Hero blank-band bug (root cause):
- The hero override read styled-text fields as `field.text|default:field`
(eyebrow/headline/subheadline/description). The ninjatpl engine hard-errors
on attribute-access-against-a-bare-string, and the demo seed passes these
fields as bare strings, so the whole hero errored and rendered as an empty
~75vh band on the landing page. Switched to `field|get:"text"|default:field`
— the process-global `get` filter degrades gracefully on a bare string
(returns nothing, so `|default:` falls back to the string) and still reads
`.text` from the admin/editor `{text,color}` object form. Matches the fixed
sibling lanes (terminal, scifi-clean). navbar `cta.text` left as-is: that
field is always a link object, never a bare string (terminal did the same).
Whitespace pass:
- Trimmed oversized marketing section padding py-16 md:py-24 -> py-12 md:py-20
across 15 blocks (cta, feature-grid, pricing, stats, team, testimonial,
timeline, faq, countdown, rich-section, contact-card, contact-form,
event-list, menu-list, hours-location) to remove dead inter-section bands.
Tailwind classes only — the host Tailwind build now scans theme .ninjatpl,
so responsive utilities compile; no duplicate hand-rolled media-query CSS
added.
No new CSS (earthen's manifest CSS is all bespoke aesthetic — nothing
duplicated a utility). No scroll-reveal system exists to harden; the stats
count-up already no-ops under reduced-motion / no-JS and renders final values.
Codeless build OK (earthen@0.2.1). check-safety: 32 checks 19 ok 13 skip -> OK.
No version bump.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
27 lines
3.3 KiB
Plaintext
27 lines
3.3 KiB
Plaintext
{# pricing override — earthen: paper ground, soft botanical tier cards, terracotta prices. Field reads, highlighted/tier control flow, features loop and check-icon <use> preserved verbatim from the builtin; only classes/style/fonts reskinned. #}
|
|
<section data-block-override="earthen:pricing" class="py-12 md:py-20 bg-paper-grain text-foreground{% if class %} {{ class }}{% endif %}">
|
|
<div class="mx-auto max-w-6xl px-4">
|
|
{% if heading %}<h2 class="text-center text-3xl md:text-4xl font-semibold" style="font-family:var(--font-heading, 'Fraunces', 'Playfair Display', Georgia, serif);color:hsl(var(--primary))">{{ heading }}</h2>{% endif %}
|
|
{% if intro %}<p class="mx-auto mt-4 max-w-2xl text-center text-lg text-muted-foreground" style="font-family:var(--font-body, 'Work Sans', ui-sans-serif, system-ui, sans-serif)">{{ intro }}</p>{% endif %}
|
|
<div class="mt-12 grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-3">
|
|
{% for tier in tiers %}
|
|
<div class="relative flex flex-col earthen-panel earthen-blob-soft p-6"{% if tier.highlighted %} style="box-shadow: inset 0 0 0 2px hsl(var(--accent));"{% endif %}>
|
|
{% if tier.badge %}<span class="absolute -top-3 left-1/2 -translate-x-1/2 rounded-full px-3 py-1 text-xs font-semibold uppercase tracking-wide" style="background-color:hsl(var(--accent));color:hsl(var(--accent-foreground));">{{ tier.badge }}</span>{% endif %}
|
|
<h3 class="text-center text-lg font-semibold" style="font-family:var(--font-heading, 'Fraunces', 'Playfair Display', Georgia, serif);color:hsl(var(--foreground))">{{ tier.name }}</h3>
|
|
<div class="mx-auto my-3 h-px w-12" style="background-color:hsl(var(--border));"></div>
|
|
<p class="flex items-baseline justify-center gap-1">
|
|
<span class="text-4xl font-bold tracking-tight" style="font-family:var(--font-heading, 'Fraunces', 'Playfair Display', Georgia, serif);color:hsl(var(--accent))">{% if currency %}{{ currency }}{% else %}${% endif %}{{ tier.price }}</span>
|
|
{% if tier.period %}<span class="text-sm text-muted-foreground">{{ tier.period }}</span>{% endif %}
|
|
</p>
|
|
{% if tier.description %}<p class="mt-3 text-center text-sm text-muted-foreground" style="font-family:var(--font-body, 'Work Sans', ui-sans-serif, system-ui, sans-serif)">{{ tier.description }}</p>{% endif %}
|
|
{% if tier.features %}<ul class="mt-6 flex-1 space-y-3 text-sm">
|
|
{% for feature in tier.features %}<li class="flex items-start gap-2"><svg class="mt-0.5 h-4 w-4 shrink-0 text-primary" aria-hidden="true"><use href="/icons/lucide.svg#check"></use></svg><span>{{ feature }}</span></li>{% endfor %}
|
|
</ul>{% endif %}
|
|
{% if tier.ctaUrl and tier.ctaLabel %}{% if tier.highlighted %}<a href="{{ tier.ctaUrl }}" class="earthen-cta mt-8 inline-flex w-full items-center justify-center px-5 py-3 font-semibold">{{ tier.ctaLabel }}</a>{% else %}<a href="{{ tier.ctaUrl }}" class="mt-8 inline-flex w-full items-center justify-center rounded-lg px-5 py-3 font-semibold transition-colors hover:bg-muted" style="border:1.5px solid hsl(var(--border));color:hsl(var(--primary));">{{ tier.ctaLabel }}</a>{% endif %}{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% if billingNote %}<p class="mt-8 text-center text-sm text-muted-foreground">{{ billingNote }}</p>{% endif %}
|
|
</div>
|
|
</section>
|