25fadb3d73
Hotlinked images from f12.rocks were blocked cross-origin; download 640px WebPs into the repo and reference them with relative paths. Co-authored-by: Cursor <cursoragent@cursor.com>
382 lines
9.5 KiB
HTML
382 lines
9.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="@f12.rocks auf Instagram — Konzerte, Football, Festivals. Fotografie von Frank Schwenk.">
|
|
<title>@f12.rocks — Instagram</title>
|
|
<style>
|
|
:root {
|
|
--bg: #0a0908;
|
|
--surface: #14110f;
|
|
--border: #2a221c;
|
|
--text: #f5efe8;
|
|
--muted: #a89888;
|
|
--insta: #f12f12;
|
|
--insta-soft: rgba(241, 47, 18, 0.15);
|
|
--max: 44rem;
|
|
}
|
|
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
body {
|
|
font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.65;
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.hero {
|
|
position: relative;
|
|
padding: 2.5rem 1.5rem 2rem;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0;
|
|
background:
|
|
radial-gradient(ellipse 70% 50% at 50% 0%, var(--insta-soft), transparent),
|
|
var(--bg);
|
|
z-index: 0;
|
|
}
|
|
|
|
.hero > * { position: relative; z-index: 1; }
|
|
|
|
.insta-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.14em;
|
|
text-transform: uppercase;
|
|
color: var(--insta);
|
|
margin-bottom: 1rem;
|
|
padding: 0.35rem 0.85rem;
|
|
border: 1px solid rgba(241, 47, 18, 0.35);
|
|
border-radius: 2rem;
|
|
}
|
|
|
|
.insta-badge svg {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
stroke: var(--insta);
|
|
fill: none;
|
|
stroke-width: 2;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
}
|
|
|
|
.photo-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 0.35rem;
|
|
max-width: 28rem;
|
|
margin: 0 auto 1.75rem;
|
|
border-radius: 0.65rem;
|
|
overflow: hidden;
|
|
border: 1px solid var(--border);
|
|
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
|
|
}
|
|
|
|
.photo-grid img {
|
|
display: block;
|
|
width: 100%;
|
|
aspect-ratio: 1;
|
|
object-fit: cover;
|
|
background: var(--surface);
|
|
}
|
|
|
|
.photo-grid img:first-child {
|
|
grid-column: span 2;
|
|
grid-row: span 2;
|
|
aspect-ratio: auto;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: clamp(2rem, 7vw, 3rem);
|
|
font-weight: 800;
|
|
letter-spacing: -0.03em;
|
|
margin-bottom: 0.4rem;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.hero h1 span { color: var(--insta); }
|
|
|
|
.handle {
|
|
color: var(--muted);
|
|
font-size: 1rem;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.tagline {
|
|
color: var(--muted);
|
|
font-size: 1.1rem;
|
|
max-width: 26rem;
|
|
margin: 0 auto 1.5rem;
|
|
}
|
|
|
|
.cta-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.75rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.45rem;
|
|
padding: 0.75rem 1.35rem;
|
|
border-radius: 0.5rem;
|
|
font-weight: 600;
|
|
font-size: 0.95rem;
|
|
text-decoration: none;
|
|
transition: transform 0.15s, box-shadow 0.15s;
|
|
}
|
|
|
|
.btn:hover { transform: translateY(-2px); }
|
|
|
|
.btn-primary {
|
|
background: var(--insta);
|
|
color: #fff;
|
|
box-shadow: 0 4px 20px rgba(241, 47, 18, 0.35);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: var(--surface);
|
|
color: var(--text);
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
border-color: var(--insta);
|
|
box-shadow: 0 4px 16px rgba(241, 47, 18, 0.12);
|
|
}
|
|
|
|
main {
|
|
max-width: var(--max);
|
|
margin: 0 auto;
|
|
padding: 0 1.5rem 4rem;
|
|
}
|
|
|
|
section { margin-bottom: 2.5rem; }
|
|
|
|
h2 {
|
|
font-size: 0.82rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.12em;
|
|
color: var(--insta);
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
p { margin-bottom: 1rem; }
|
|
|
|
.topics {
|
|
list-style: none;
|
|
display: grid;
|
|
gap: 0.7rem;
|
|
}
|
|
|
|
.topics li {
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 0.65rem;
|
|
padding: 1rem 1.15rem;
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
gap: 0.85rem;
|
|
align-items: start;
|
|
}
|
|
|
|
.topics .icon {
|
|
font-size: 1.4rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.topics strong {
|
|
display: block;
|
|
color: var(--text);
|
|
margin-bottom: 0.15rem;
|
|
}
|
|
|
|
.topics span {
|
|
color: var(--muted);
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.callout {
|
|
text-align: center;
|
|
padding: 2rem 1.5rem;
|
|
background:
|
|
radial-gradient(ellipse 60% 80% at 50% 100%, var(--insta-soft), transparent),
|
|
var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 1rem;
|
|
}
|
|
|
|
.callout h2 {
|
|
font-size: clamp(1.3rem, 4vw, 1.7rem);
|
|
text-transform: none;
|
|
letter-spacing: -0.02em;
|
|
color: var(--text);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.callout p {
|
|
color: var(--muted);
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
footer {
|
|
max-width: var(--max);
|
|
margin: 0 auto;
|
|
padding: 1.5rem;
|
|
border-top: 1px solid var(--border);
|
|
color: var(--muted);
|
|
font-size: 0.82rem;
|
|
text-align: center;
|
|
}
|
|
|
|
footer a { color: var(--insta); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header class="hero">
|
|
<p class="insta-badge">
|
|
<svg viewBox="0 0 24 24" aria-hidden="true">
|
|
<rect x="2" y="2" width="20" height="20" rx="5"/>
|
|
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"/>
|
|
<line x1="17.5" y1="6.5" x2="17.51" y2="6.5"/>
|
|
</svg>
|
|
Instagram
|
|
</p>
|
|
|
|
<div class="photo-grid" aria-label="Auswahl aus dem @f12.rocks Feed">
|
|
<img
|
|
src="images/hellraisers-schlossplatz.webp"
|
|
alt="Konzertfoto: Hellraisers & The Shape am Schlossplatz"
|
|
width="640"
|
|
height="958"
|
|
loading="eager"
|
|
>
|
|
<img
|
|
src="images/crusaders-sideline.webp"
|
|
alt="Football: Crusaders an der Sideline"
|
|
width="640"
|
|
height="427"
|
|
loading="lazy"
|
|
>
|
|
<img
|
|
src="images/baxxter-shooting.webp"
|
|
alt="Band-Shooting: Baxxter Boys"
|
|
width="640"
|
|
height="428"
|
|
loading="lazy"
|
|
>
|
|
<img
|
|
src="images/miev-konzert.webp"
|
|
alt="Live-Konzert im MieV"
|
|
width="640"
|
|
height="427"
|
|
loading="lazy"
|
|
>
|
|
<img
|
|
src="images/crusaders-gameday.webp"
|
|
alt="American Football: Crusaders Game Day"
|
|
width="640"
|
|
height="427"
|
|
loading="lazy"
|
|
>
|
|
</div>
|
|
|
|
<h1>Folge <span>@f12.rocks</span></h1>
|
|
<p class="handle">instagram.com/f12.rocks</p>
|
|
<p class="tagline">
|
|
Konzerte, Football, Festivals — echte Fotos von Frank Schwenk,
|
|
direkt im Feed. Kein Stock, kein KI-Bildschirm: was du siehst, ist passiert.
|
|
</p>
|
|
<div class="cta-row">
|
|
<a class="btn btn-primary" href="https://www.instagram.com/f12.rocks" rel="noopener">Auf Instagram folgen</a>
|
|
<a class="btn btn-secondary" href="https://f12.rocks" rel="noopener">Alle Fotos auf f12.rocks</a>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<section>
|
|
<h2>Was im Feed landet</h2>
|
|
<p>
|
|
<strong>@f12.rocks</strong> ist Frank Schwenks Instagram für Event-Fotografie:
|
|
Rock und Punk auf der Bühne, Crusaders an der Sideline, Festivals mit Licht,
|
|
das man liebt oder flucht — alles aus der ersten Reihe oder hinterm Zaun.
|
|
</p>
|
|
<p>
|
|
Neue Bilder kommen regelmäßig rein. Wer folgt, bekommt die Momente,
|
|
bevor sie in der Galerie oder im Archiv verschwinden.
|
|
</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Typische Motive</h2>
|
|
<ul class="topics">
|
|
<li>
|
|
<span class="icon" aria-hidden="true">🎸</span>
|
|
<div>
|
|
<strong>Konzerte & Festivals</strong>
|
|
<span>Chapel, Schlossplatz, MieV — Bands, Bühnenlicht, Publikum aus Fotografensicht.</span>
|
|
</div>
|
|
</li>
|
|
<li>
|
|
<span class="icon" aria-hidden="true">🏈</span>
|
|
<div>
|
|
<strong>Football an der Sideline</strong>
|
|
<span>Crusaders Game Days: Geschwindigkeit, Kontakt, zwei Kameras wenn's brennt.</span>
|
|
</div>
|
|
</li>
|
|
<li>
|
|
<span class="icon" aria-hidden="true">📷</span>
|
|
<div>
|
|
<strong>Shootings & Making-of</strong>
|
|
<span>Bands in freier Wildbahn, Hitze, Unterführungen — der Feed zeigt auch das Drumherum.</span>
|
|
</div>
|
|
</li>
|
|
<li>
|
|
<span class="icon" aria-hidden="true">✨</span>
|
|
<div>
|
|
<strong>Neue Posts, kein Algorithmus-Gefühl</strong>
|
|
<span>Ein Account, ein Fotograf — du siehst, woran er gerade hängt.</span>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<div class="callout">
|
|
<h2>Feed öffnen, folgen, fertig.</h2>
|
|
<p>
|
|
Der schnellste Weg zu neuen Bildern: <strong>@f12.rocks</strong> auf Instagram.
|
|
Die Galerie auf f12.rocks ist das Archiv — der Feed ist der Live-Kanal.
|
|
</p>
|
|
<div class="cta-row">
|
|
<a class="btn btn-primary" href="https://www.instagram.com/f12.rocks" rel="noopener">@f12.rocks folgen</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
Erstellt von @cursor · Gitea Issue #5 ·
|
|
<a href="https://gitea.schwenk.online/froxxxy/playground/issues/5">froxxxy/playground</a>
|
|
· Fotos: <a href="https://f12.rocks">f12.rocks</a> / Frank Schwenk
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|