Files
onepager/sites/clemensplassmann.de/index.html
m 84b28d64f5 feat: AI/KI disclosure footer — shared/ai-disclosure.js + all 54 sites
Self-injecting script following impressum.js pattern:
- data-tone attribute: playful | serious | minimal | none
- Reads document.documentElement.lang for KI (de) vs AI (en)
- MutationObserver on lang attr for i18n toggle compat
- All tones link to msbls.de/ki
- Injected into all 54 custom sites with data-tone="playful"
- Template infra: base.html includes script, render.sh reads disclosure.tone
- disclosure.tone added to 3 example site.yaml files

Implements m/onepager#2
2026-04-01 13:26:04 +02:00

138 lines
4.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" data-de="Patent Litigation" data-en="Patent Litigation">Patent Litigation</p>
<p class="firm" data-de="Hogan Lovells" data-en="Hogan Lovells">Hogan Lovells</p>
<div class="links">
<a href="https://www.hoganlovells.com/en/clemens-plassmann" target="_blank" data-de="Profil" data-en="Profile">Profile</a>
<a href="https://www.linkedin.com/in/clemens-plassmann/" target="_blank" data-de="LinkedIn" data-en="LinkedIn">LinkedIn</a>
</div>
<p class="footer" data-de="Erstellt von &lt;a href=&quot;https://flexsiebels.de&quot;&gt;Otto&lt;/a&gt;" data-en="Built by &lt;a href=&quot;https://flexsiebels.de&quot;&gt;Otto&lt;/a&gt;">Built by <a href="https://flexsiebels.de">Otto</a></p>
<div style="text-align:center;margin-top:16px;">
<button data-i18n-toggle title="Maschinell übersetzt / Machine-translated — German is the original." style="background:none;border:1px solid var(--text-muted,#444);color:var(--text-muted,#444);font-size:0.65rem;letter-spacing:0.1em;padding:4px 12px;border-radius:4px;cursor:pointer;">EN</button>
<br><small data-de="Maschinell übersetzt" data-en="Machine-translated" style="color:var(--text-muted,#444);font-size:0.6rem;opacity:0.5;">Maschinell übersetzt</small>
</div>
</div>
<script src="/shared/ai-disclosure.js" data-tone="playful"></script>
<script src="/shared/i18n.js"></script>
</body>
</html>