| [f83ccf3] | 1 | <div class="container fg-navwrap">
|
|---|
| [1e2e9e7] | 2 | <%# Zelfde post-navigatie (Newer/Older) als op een gewone post, zodat een
|
|---|
| [f33b24a] | 3 | bezoeker op de fan-gate niet vastloopt maar verder kan bladeren. Zelfde
|
|---|
| 4 | maten als .post-page (720px / padding 0 1rem) zodat de nav pixel-gelijk is. %>
|
|---|
| [1e2e9e7] | 5 | <%- include('../partials/post-nav', { newerPost: (typeof newerPost !== 'undefined' ? newerPost : null), olderPost: (typeof olderPost !== 'undefined' ? olderPost : null) }) %>
|
|---|
| 6 | </div>
|
|---|
| 7 |
|
|---|
| [b9dc94c] | 8 | <section class="fg">
|
|---|
| 9 | <div class="fg-card">
|
|---|
| 10 | <div class="fg-lock">🔒</div>
|
|---|
| 11 | <h1 class="fg-h1">Alleen voor fans</h1>
|
|---|
| 12 | <% if (typeof fgTitle !== 'undefined' && fgTitle) { %><p class="fg-which">"<%= fgTitle %>"</p><% } %>
|
|---|
| 13 | <p class="fg-sub">Dit is exclusief voor ingelogde fans. Log in om het te bekijken.</p>
|
|---|
| 14 | <p><a class="fg-btn" href="/auth/login?next=<%= encodeURIComponent(fgNext || '/') %>">Inloggen / aanmelden</a></p>
|
|---|
| 15 | </div>
|
|---|
| 16 | </section>
|
|---|
| 17 |
|
|---|
| 18 | <style>
|
|---|
| [f83ccf3] | 19 | /* EXACT dezelfde class-combinatie (.container + override) én waarden als
|
|---|
| 20 | .post-page in post.ejs, zodat de post-nav cascade-identiek uitlijnt. */
|
|---|
| 21 | .fg-navwrap { max-width: 720px; margin: 0.5rem auto 2rem; padding: 0 1rem; }
|
|---|
| [b9dc94c] | 22 | .fg { max-width: 480px; margin: 0 auto; padding: 56px 18px; text-align: center; }
|
|---|
| 23 | .fg-card { border: 1px solid rgba(128,128,128,.2); border-radius: 18px; padding: 36px 28px; }
|
|---|
| 24 | .fg-lock { font-size: 40px; margin-bottom: 8px; }
|
|---|
| 25 | .fg-h1 { font-size: 26px; margin: 0 0 6px; }
|
|---|
| 26 | .fg-which { font-style: italic; opacity: .8; margin: 0 0 12px; }
|
|---|
| 27 | .fg-sub { opacity: .85; line-height: 1.6; margin: 0 0 20px; }
|
|---|
| 28 | .fg-btn { display: inline-block; padding: 12px 22px; border-radius: 10px; background: var(--accent,#6b8f71); color: #fff; text-decoration: none; font-weight: 600; }
|
|---|
| 29 | </style>
|
|---|