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
This commit is contained in:
22
templates/base.html
Normal file
22
templates/base.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{lang}}">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{title}}</title>
|
||||
<meta name="description" content="{{description}}">
|
||||
<meta name="robots" content="index, follow">
|
||||
<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'>{{favicon}}</text></svg>">
|
||||
{{fonts}}
|
||||
<style>
|
||||
{{css_variables}}
|
||||
{{css_responsive}}
|
||||
{{css_animations}}
|
||||
{{css_noise}}
|
||||
{{template_css}}
|
||||
</style>
|
||||
</head>
|
||||
<body class="noise-overlay">
|
||||
{{body}}
|
||||
</body>
|
||||
</html>
|
||||
83
templates/editorial.html
Normal file
83
templates/editorial.html
Normal file
@@ -0,0 +1,83 @@
|
||||
{{template_css_start}}
|
||||
:root {
|
||||
--bg: #0a0a0c;
|
||||
--bg-elevated: #111115;
|
||||
--text: #e8e8ed;
|
||||
--text-dimmed: #6e6e7a;
|
||||
--accent: {{accent}};
|
||||
--accent-light: {{accent_light}};
|
||||
--font-primary: '{{font_primary}}', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
--font-secondary: '{{font_secondary}}', 'Georgia', serif;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 640px;
|
||||
}
|
||||
|
||||
.editorial-header {
|
||||
padding: var(--spacing-xl) 0;
|
||||
border-bottom: 1px solid rgba(255,255,255,0.06);
|
||||
margin-bottom: var(--spacing-xl);
|
||||
}
|
||||
|
||||
.editorial-header h1 {
|
||||
font-family: var(--font-secondary);
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
line-height: 1.2;
|
||||
letter-spacing: -0.02em;
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
|
||||
.editorial-header .subtitle {
|
||||
color: var(--text-dimmed);
|
||||
font-size: 1.1rem;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.editorial-body {
|
||||
font-family: var(--font-secondary);
|
||||
font-size: 1.1rem;
|
||||
line-height: 1.9;
|
||||
color: var(--text-dimmed);
|
||||
}
|
||||
|
||||
.editorial-body p {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.editorial-body strong {
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.editorial-body blockquote {
|
||||
border-left: 3px solid var(--accent);
|
||||
padding-left: var(--spacing-lg);
|
||||
margin: var(--spacing-xl) 0;
|
||||
font-style: italic;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl) 0;
|
||||
color: var(--text-dimmed);
|
||||
font-size: 0.75rem;
|
||||
border-top: 1px solid rgba(255,255,255,0.06);
|
||||
margin-top: var(--spacing-xl);
|
||||
}
|
||||
{{template_css_end}}
|
||||
{{template_body_start}}
|
||||
<div class="container fade-in">
|
||||
<div class="editorial-header">
|
||||
<h1>{{title}}</h1>
|
||||
<div class="subtitle">{{tagline}}</div>
|
||||
</div>
|
||||
<div class="editorial-body">
|
||||
{{content_html}}
|
||||
</div>
|
||||
<div class="footer">
|
||||
{{name}} — {{year}}
|
||||
</div>
|
||||
</div>
|
||||
{{template_body_end}}
|
||||
63
templates/fun.html
Normal file
63
templates/fun.html
Normal file
@@ -0,0 +1,63 @@
|
||||
{{template_css_start}}
|
||||
:root {
|
||||
--bg: #0a0a0c;
|
||||
--bg-elevated: #111115;
|
||||
--bg-card: #16161b;
|
||||
--text: #e8e8ed;
|
||||
--text-dimmed: #6e6e7a;
|
||||
--accent: {{accent}};
|
||||
--accent-light: {{accent_light}};
|
||||
--font-primary: '{{font_primary}}', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-md);
|
||||
letter-spacing: -0.03em;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
color: var(--text-dimmed);
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: var(--spacing-xl);
|
||||
}
|
||||
|
||||
.emoji-big {
|
||||
font-size: 4rem;
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.cta {
|
||||
display: inline-block;
|
||||
margin-top: var(--spacing-lg);
|
||||
padding: 12px 32px;
|
||||
background: var(--accent);
|
||||
color: var(--bg);
|
||||
text-decoration: none;
|
||||
border-radius: var(--radius);
|
||||
font-weight: 600;
|
||||
font-size: 0.9rem;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.cta:hover { opacity: 0.85; }
|
||||
{{template_css_end}}
|
||||
{{template_body_start}}
|
||||
<div class="container fade-in">
|
||||
<div class="emoji-big">{{emoji}}</div>
|
||||
<h1>{{title}}</h1>
|
||||
<div class="subtitle">{{tagline}}</div>
|
||||
{{sections_html}}
|
||||
</div>
|
||||
{{template_body_end}}
|
||||
36
templates/minimal.html
Normal file
36
templates/minimal.html
Normal file
@@ -0,0 +1,36 @@
|
||||
{{template_css_start}}
|
||||
:root {
|
||||
--bg: #0a0a0c;
|
||||
--bg-elevated: #111115;
|
||||
--text: #e8e8ed;
|
||||
--text-dimmed: #6e6e7a;
|
||||
--accent: {{accent}};
|
||||
--font-primary: '{{font_primary}}', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
color: var(--text-dimmed);
|
||||
font-size: 1rem;
|
||||
}
|
||||
{{template_css_end}}
|
||||
{{template_body_start}}
|
||||
<div class="container fade-in">
|
||||
<h1>{{title}}</h1>
|
||||
<div class="subtitle">{{tagline}}</div>
|
||||
</div>
|
||||
{{template_body_end}}
|
||||
156
templates/person-dark.html
Normal file
156
templates/person-dark.html
Normal file
@@ -0,0 +1,156 @@
|
||||
{{template_css_start}}
|
||||
:root {
|
||||
--bg: #0a0a0c;
|
||||
--bg-elevated: #111115;
|
||||
--bg-card: #16161b;
|
||||
--text: #e8e8ed;
|
||||
--text-dimmed: #6e6e7a;
|
||||
--accent: {{accent}};
|
||||
--accent-light: {{accent_light}};
|
||||
--font-primary: '{{font_primary}}', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
--font-secondary: '{{font_secondary}}', serif;
|
||||
}
|
||||
|
||||
.hero {
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl) 0;
|
||||
}
|
||||
|
||||
.initials {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 50%;
|
||||
background: var(--bg-elevated);
|
||||
border: 2px solid var(--accent);
|
||||
font-size: 1.5rem;
|
||||
font-weight: 600;
|
||||
color: var(--accent);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.hero .role {
|
||||
color: var(--accent);
|
||||
font-weight: 500;
|
||||
font-size: 0.9rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
|
||||
.hero .tagline {
|
||||
color: var(--text-dimmed);
|
||||
font-family: var(--font-secondary);
|
||||
font-style: italic;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.tags {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--spacing-sm);
|
||||
justify-content: center;
|
||||
margin: var(--spacing-lg) 0;
|
||||
}
|
||||
|
||||
.tag {
|
||||
background: var(--bg-elevated);
|
||||
border: 1px solid rgba(255,255,255,0.06);
|
||||
padding: 6px 16px;
|
||||
border-radius: 20px;
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-dimmed);
|
||||
}
|
||||
|
||||
.section {
|
||||
margin: var(--spacing-xl) 0;
|
||||
}
|
||||
|
||||
.section h2 {
|
||||
font-size: 0.8rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.15em;
|
||||
color: var(--accent);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
|
||||
.card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid rgba(255,255,255,0.04);
|
||||
border-radius: var(--radius);
|
||||
padding: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.card h3 {
|
||||
font-size: 1rem;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.card p {
|
||||
color: var(--text-dimmed);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.bio {
|
||||
color: var(--text-dimmed);
|
||||
font-family: var(--font-secondary);
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.cta {
|
||||
display: inline-block;
|
||||
margin-top: var(--spacing-xl);
|
||||
padding: 12px 32px;
|
||||
background: var(--accent);
|
||||
color: var(--bg);
|
||||
text-decoration: none;
|
||||
border-radius: var(--radius);
|
||||
font-weight: 600;
|
||||
font-size: 0.9rem;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.cta:hover { opacity: 0.85; }
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl) 0 var(--spacing-lg);
|
||||
color: var(--text-dimmed);
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
{{template_css_end}}
|
||||
{{template_body_start}}
|
||||
<div class="container">
|
||||
<div class="hero fade-in">
|
||||
<div class="initials">{{initials}}</div>
|
||||
<h1>{{name}}</h1>
|
||||
<div class="role">{{role}}</div>
|
||||
<div class="tagline">{{tagline}}</div>
|
||||
</div>
|
||||
|
||||
<div class="tags fade-in stagger-1">
|
||||
{{tags_html}}
|
||||
</div>
|
||||
|
||||
{{sections_html}}
|
||||
|
||||
<div class="footer fade-in stagger-5">
|
||||
© {{year}} {{name}}
|
||||
</div>
|
||||
</div>
|
||||
{{template_body_end}}
|
||||
158
templates/person-light.html
Normal file
158
templates/person-light.html
Normal file
@@ -0,0 +1,158 @@
|
||||
{{template_css_start}}
|
||||
:root {
|
||||
--bg: #faf9f6;
|
||||
--bg-elevated: #ffffff;
|
||||
--bg-card: #ffffff;
|
||||
--text: #1a1a1a;
|
||||
--text-dimmed: #6b6b6b;
|
||||
--accent: {{accent}};
|
||||
--accent-light: {{accent_light}};
|
||||
--font-primary: '{{font_primary}}', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
--font-secondary: '{{font_secondary}}', serif;
|
||||
}
|
||||
|
||||
.hero {
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl) 0;
|
||||
}
|
||||
|
||||
.initials {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 50%;
|
||||
background: var(--accent-light);
|
||||
border: 2px solid var(--accent);
|
||||
font-size: 1.5rem;
|
||||
font-weight: 600;
|
||||
color: var(--accent);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.hero .role {
|
||||
color: var(--accent);
|
||||
font-weight: 500;
|
||||
font-size: 0.9rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
margin-bottom: var(--spacing-md);
|
||||
}
|
||||
|
||||
.hero .tagline {
|
||||
color: var(--text-dimmed);
|
||||
font-family: var(--font-secondary);
|
||||
font-style: italic;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.tags {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--spacing-sm);
|
||||
justify-content: center;
|
||||
margin: var(--spacing-lg) 0;
|
||||
}
|
||||
|
||||
.tag {
|
||||
background: var(--bg-elevated);
|
||||
border: 1px solid rgba(0,0,0,0.08);
|
||||
padding: 6px 16px;
|
||||
border-radius: 20px;
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-dimmed);
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
|
||||
}
|
||||
|
||||
.section {
|
||||
margin: var(--spacing-xl) 0;
|
||||
}
|
||||
|
||||
.section h2 {
|
||||
font-size: 0.8rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.15em;
|
||||
color: var(--accent);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
|
||||
.card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid rgba(0,0,0,0.06);
|
||||
border-radius: var(--radius);
|
||||
padding: var(--spacing-lg);
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
|
||||
}
|
||||
|
||||
.card h3 {
|
||||
font-size: 1rem;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.card p {
|
||||
color: var(--text-dimmed);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.bio {
|
||||
color: var(--text-dimmed);
|
||||
font-family: var(--font-secondary);
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.cta {
|
||||
display: inline-block;
|
||||
margin-top: var(--spacing-xl);
|
||||
padding: 12px 32px;
|
||||
background: var(--accent);
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
border-radius: var(--radius);
|
||||
font-weight: 600;
|
||||
font-size: 0.9rem;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.cta:hover { opacity: 0.85; }
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl) 0 var(--spacing-lg);
|
||||
color: var(--text-dimmed);
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
{{template_css_end}}
|
||||
{{template_body_start}}
|
||||
<div class="container">
|
||||
<div class="hero fade-in">
|
||||
<div class="initials">{{initials}}</div>
|
||||
<h1>{{name}}</h1>
|
||||
<div class="role">{{role}}</div>
|
||||
<div class="tagline">{{tagline}}</div>
|
||||
</div>
|
||||
|
||||
<div class="tags fade-in stagger-1">
|
||||
{{tags_html}}
|
||||
</div>
|
||||
|
||||
{{sections_html}}
|
||||
|
||||
<div class="footer fade-in stagger-5">
|
||||
© {{year}} {{name}}
|
||||
</div>
|
||||
</div>
|
||||
{{template_body_end}}
|
||||
112
templates/product-dark.html
Normal file
112
templates/product-dark.html
Normal file
@@ -0,0 +1,112 @@
|
||||
{{template_css_start}}
|
||||
:root {
|
||||
--bg: #0a0a0c;
|
||||
--bg-elevated: #111115;
|
||||
--bg-card: #16161b;
|
||||
--text: #e8e8ed;
|
||||
--text-dimmed: #6e6e7a;
|
||||
--accent: {{accent}};
|
||||
--accent-light: {{accent_light}};
|
||||
--font-primary: '{{font_primary}}', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
}
|
||||
|
||||
.hero {
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl) 0;
|
||||
}
|
||||
|
||||
.hero h1 {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: var(--spacing-md);
|
||||
letter-spacing: -0.03em;
|
||||
}
|
||||
|
||||
.hero .subtitle {
|
||||
color: var(--text-dimmed);
|
||||
font-size: 1.1rem;
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin: var(--spacing-xl) 0;
|
||||
}
|
||||
|
||||
.section h2 {
|
||||
font-size: 0.8rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.15em;
|
||||
color: var(--accent);
|
||||
margin-bottom: var(--spacing-lg);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: var(--spacing-md);
|
||||
}
|
||||
|
||||
.card {
|
||||
background: var(--bg-card);
|
||||
border: 1px solid rgba(255,255,255,0.04);
|
||||
border-radius: var(--radius);
|
||||
padding: var(--spacing-lg);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card h3 {
|
||||
font-size: 1rem;
|
||||
margin-bottom: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.card p {
|
||||
color: var(--text-dimmed);
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.cta-section {
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl) 0;
|
||||
}
|
||||
|
||||
.cta {
|
||||
display: inline-block;
|
||||
padding: 14px 40px;
|
||||
background: var(--accent);
|
||||
color: var(--bg);
|
||||
text-decoration: none;
|
||||
border-radius: var(--radius);
|
||||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.cta:hover { opacity: 0.85; }
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: var(--spacing-xl) 0 var(--spacing-lg);
|
||||
color: var(--text-dimmed);
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
{{template_css_end}}
|
||||
{{template_body_start}}
|
||||
<div class="container">
|
||||
<div class="hero fade-in">
|
||||
<h1>{{title}}</h1>
|
||||
<div class="subtitle">{{tagline}}</div>
|
||||
</div>
|
||||
|
||||
{{sections_html}}
|
||||
|
||||
<div class="cta-section fade-in stagger-4">
|
||||
<a href="{{cta_href}}" class="cta">{{cta_text}}</a>
|
||||
</div>
|
||||
|
||||
<div class="footer fade-in stagger-5">
|
||||
© {{year}} {{name}}
|
||||
</div>
|
||||
</div>
|
||||
{{template_body_end}}
|
||||
Reference in New Issue
Block a user