Full Wave A build to the OVERRIDE-CONTRACT (frozen cms a0f07e2ae): - 49 mandatory builtin overrides in templates/overrides/magazine-bold/, re-skinned to streetwear cover-story chrome (massive condensed uppercase Archivo Black headlines, heavy 2px rules, hard square edges, mono datelines, fluoro accent slabs). Every content field, provider var, custom tag and JS block preserved verbatim from the frozen builtin defaults; legacy button (link/style/label) and card (media/text) field reads already reconciled. - 7 page templates: default, full-width, landing, article, blog-index, contact, auth. - 4 persona blocks (deleted masthead/photo_essay/pull_quote/issue_archive/ colophon — now overrides of navbar/gallery/quote/post-index/footer): cover_story, lookbook, drop_calendar, credits_ticker. - 5 dual-mode presets (newsprint+voltage light / ink-black+fluoro dark), all 19 tokens, dark tuned not inverted. - Bundled OFL woff2: Archivo Black (display), Inter (body), IBM Plex Mono (labels); fonts.json + assets/fonts/LICENSES.md. All font-family via var(--font-heading|body|mono, fallback). - Themed email-safe wrapper (tables, inline styles, streetwear defaults). - Master pages (navbar/footer/slot chrome) + seed demo site (OFFCUT label: home, about, blog + 3 posts, contact with data table + row_inserted → email-admins workflow, login) in fashion-label voice. - MID motion tier: marquee ticker, scroll reveal, duotone hover, scroll progress bar — all prefers-reduced-motion honored with static fallback, no canvas. - Icon packs (lucide, simple-icons) declared in plugin.mod + RECOMMENDED_ICONS. Verified: `make build` exit 0; `check-safety` 32 checks 19 ok 13 skip -> OK. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
24 lines
1.9 KiB
Plaintext
24 lines
1.9 KiB
Plaintext
{# drop_calendar (magazine-bold) — dated list of drops: mono datelines, condensed names, a status tag. Fields: heading, intro, drops[].date/.name/.detail/.status(live|soon|sold)/.link/.linkLabel. Static, no motion. #}
|
|
<section data-block="magazine-bold:drop_calendar" class="w-full py-12 md:py-16">
|
|
<div class="mx-auto max-w-4xl px-4 sm:px-6">
|
|
{% if heading %}<h2 class="mb-heading text-3xl md:text-5xl text-foreground">{{ heading }}</h2>{% endif %}
|
|
{% if intro %}<p class="mt-4 max-w-2xl text-deck text-muted-foreground">{{ intro }}</p>{% endif %}
|
|
{% if drops %}
|
|
<ul class="mt-10 border-t-2 border-[hsl(var(--foreground))]">
|
|
{% for drop in drops %}
|
|
<li class="flex flex-col gap-3 border-b-2 border-[hsl(var(--foreground))] py-5 sm:flex-row sm:items-center sm:gap-8">
|
|
<div class="mb-caps shrink-0 text-[hsl(var(--accent))] sm:w-40">{{ drop.date }}</div>
|
|
<div class="min-w-0 flex-1">
|
|
<h3 class="mb-heading text-xl md:text-2xl text-foreground">{% if drop.link %}<a href="{{ drop.link }}" class="transition-colors hover:text-[hsl(var(--accent))]">{{ drop.name }}</a>{% else %}{{ drop.name }}{% endif %}</h3>
|
|
{% if drop.detail %}<p class="mt-1 text-sm text-muted-foreground">{{ drop.detail }}</p>{% endif %}
|
|
</div>
|
|
{% if drop.status == "live" %}<span class="mb-caps shrink-0 bg-[hsl(var(--accent))] px-3 py-1 text-[hsl(var(--accent-foreground))]">Live</span>
|
|
{% elif drop.status == "sold" %}<span class="mb-caps shrink-0 border-2 border-[hsl(var(--border))] px-3 py-1 text-muted-foreground">Sold out</span>
|
|
{% elif drop.status == "soon" %}<span class="mb-caps shrink-0 border-2 border-[hsl(var(--foreground))] px-3 py-1 text-foreground">Coming soon</span>{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}<div class="mb-caption py-12">No drops scheduled.</div>{% endif %}
|
|
</div>
|
|
</section>
|