Initial import of Brookhaven site

This commit is contained in:
2025-11-18 20:28:52 +00:00
parent 7e27f39d01
commit 773a91dd2f
1900 changed files with 700543 additions and 0 deletions

22
templates/work.html Normal file
View File

@@ -0,0 +1,22 @@
{% extends "base.html" %}
{% block title %}Work — {{ brand }}{% endblock %}
{% block content %}
<section class="max-w-7xl mx-auto px-6 py-16">
<h1 class="text-3xl font-bold">Selected Work</h1>
<div class="mt-8 grid lg:grid-cols-2 gap-8">
{% for c in cases %}
<article class="rounded-2xl bg-bh.card/70 border border-bh.ring overflow-hidden">
<img src="{{ c.image }}" alt="{{ c.title }}" class="w-full aspect-video object-cover" onerror="this.style.display='none'">
<div class="p-6">
<h3 class="text-xl font-semibold">{{ c.title }}</h3>
<p class="mt-2 text-white/80">{{ c.desc }}</p>
<ul class="mt-3 space-y-1 text-white/70 text-sm">
{% for b in c.bullets %}<li>• {{ b }}</li>{% endfor %}
</ul>
</div>
</article>
{% endfor %}
</div>
</section>
{% endblock %}