themes-coffee/blocks/footer.ninjatpl
Alex Dunmow 1a6cc30202 feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:30:42 +08:00

29 lines
1.7 KiB
Plaintext

<div data-block="coffee:footer" class="coffee-torn-top bg-card text-card-foreground pt-12 pb-8 mt-12">
<div class="max-w-5xl mx-auto px-6 grid gap-8 md:grid-cols-3 coffee-body">
<div>
<h4 class="coffee-display text-xl text-primary mb-2">Hello there</h4>
<p class="text-sm text-muted-foreground">Pull up a seat. Pastries from 7, coffee until late.</p>
</div>
{% if showLocation != "false" and showLocation != false %}
<div>
<h4 class="coffee-display text-xl text-primary mb-2">Visit</h4>
<address class="not-italic text-sm text-foreground whitespace-pre-line">42 Roastery Lane
City, State 9000</address>
</div>
{% endif %}
<div>
<h4 class="coffee-display text-xl text-primary mb-2">Stay in touch</h4>
{% if newsletterText %}<p class="text-sm text-muted-foreground mb-3">{{ newsletterText }}</p>{% else %}<p class="text-sm text-muted-foreground mb-3">Slow notes from the bar. Brew tips, seasonal pours, no spam.</p>{% endif %}
<form class="flex gap-2" action="#" method="post" onsubmit="event.preventDefault();">
<label class="sr-only" for="coffee-newsletter-email">Email</label>
<input id="coffee-newsletter-email" name="email" type="email" required placeholder="you@cafe.com" class="flex-1 px-3 py-2 text-sm coffee-body bg-input text-foreground border border-border rounded-sm focus:outline-none focus:ring-2 focus:ring-ring">
<button type="submit" class="kraft-tag">Subscribe</button>
</form>
</div>
</div>
<div class="max-w-5xl mx-auto px-6 mt-10 pt-6 border-t coffee-pencil-rule text-xs coffee-body text-muted-foreground flex flex-wrap gap-2 justify-between">
<span>© Coffee theme — kraft paper edition.</span>
<span>Hand-drawn with care.</span>
</div>
</div>