Files
mAi 6f5de542ab feat: initial mono-repo with 30 vanity domain sites
Scaffold complete repo structure:
- 28 static sites extracted from running containers on mlake
- 2 dynamic sites (dasbes.de, dumusst.com) marked for separate handling
- Template system with 6 templates (person-dark/light, product-dark, editorial, fun, minimal)
- Shared CSS (variables, responsive, animations, noise overlay)
- nginx config generator with multi-domain alias support
- Build script with Docker-based nginx validation
- add-site.sh helper for scaffolding new domains
- Dockerfile for single nginx:alpine container

Sites: clemensplassmann.de, danosi.de, deinesei.de, derkaiseristnackt.de,
elefantenhor.de, fragina.de, frenchkis.de, ichbinaufbali.de, ichbinaufbarley.de,
insain.de, julietensity.de, kainco.de (+keinco.de), kainstress.de, keinefreun.de,
knzlmgmt.de, kopffrai.de, legalais.de, machesdocheinfach.de, mai-otto.de
(+otto.flexsiebels.de, ottomatisch.de, ichbinotto.de), martinsiebels.de,
matthiasbreier.de, osterai.de, paragraphenraiter.de, schulfrai.de, smartin3.de,
sorgenfrai.de, vonschraitter.de, wartebitte.de

Refs: otto#341
2026-03-29 13:20:27 +02:00

132 lines
3.8 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clemens Plassmann</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⚖️</text></svg>">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Georgia', 'Times New Roman', serif;
background: #0a0a0a;
color: #e8e6e3;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
text-align: center;
padding: 2rem;
max-width: 700px;
}
.name {
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 400;
letter-spacing: 0.08em;
margin-bottom: 0.5rem;
background: linear-gradient(135deg, #c9a96e 0%, #f0d89d 50%, #c9a96e 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.divider {
width: 60px;
height: 1px;
background: #c9a96e;
margin: 1.5rem auto;
opacity: 0.6;
}
.title {
font-size: 1.1rem;
font-weight: 400;
color: #8a8580;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.firm {
font-size: 1rem;
color: #6a6560;
letter-spacing: 0.1em;
}
.links {
margin-top: 3rem;
display: flex;
gap: 2rem;
justify-content: center;
flex-wrap: wrap;
}
.links a {
color: #c9a96e;
text-decoration: none;
font-size: 0.85rem;
letter-spacing: 0.12em;
text-transform: uppercase;
padding: 0.6rem 1.5rem;
border: 1px solid rgba(201, 169, 110, 0.3);
transition: all 0.3s ease;
}
.links a:hover {
border-color: #c9a96e;
background: rgba(201, 169, 110, 0.08);
}
.footer {
margin-top: 4rem;
font-size: 0.75rem;
color: #3a3530;
letter-spacing: 0.1em;
}
.footer a {
color: #3a3530;
text-decoration: none;
}
.footer a:hover {
color: #6a6560;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.container > * {
animation: fadeIn 0.8s ease forwards;
opacity: 0;
}
.container > *:nth-child(1) { animation-delay: 0.1s; }
.container > *:nth-child(2) { animation-delay: 0.3s; }
.container > *:nth-child(3) { animation-delay: 0.5s; }
.container > *:nth-child(4) { animation-delay: 0.7s; }
.container > *:nth-child(5) { animation-delay: 0.9s; }
.container > *:nth-child(6) { animation-delay: 1.1s; }
</style>
</head>
<body>
<div class="container">
<h1 class="name">Clemens Plassmann</h1>
<div class="divider"></div>
<p class="title">Patent Litigation</p>
<p class="firm">Hogan Lovells</p>
<div class="links">
<a href="https://www.hoganlovells.com/en/clemens-plassmann" target="_blank">Profile</a>
<a href="https://www.linkedin.com/in/clemens-plassmann/" target="_blank">LinkedIn</a>
</div>
<p class="footer">Built by <a href="https://flexsiebels.de">Otto</a></p>
</div>
</body>
</html>