| 1 | <div class="container pg-navwrap">
|
|---|
| 2 | <%- include('../partials/post-nav', { newerPost: (typeof newerPost !== 'undefined' ? newerPost : null), olderPost: (typeof olderPost !== 'undefined' ? olderPost : null) }) %>
|
|---|
| 3 | </div>
|
|---|
| 4 |
|
|---|
| 5 | <article class="pg-page">
|
|---|
| 6 | <% if (typeof pgTitle !== 'undefined' && pgTitle) { %><h1 class="pg-title"><%= pgTitle %></h1><% } %>
|
|---|
| 7 |
|
|---|
| 8 | <% if (typeof pgTeaser !== 'undefined' && pgTeaser) { %>
|
|---|
| 9 | <div class="pg-teaser"><p><%= pgTeaser %></p></div>
|
|---|
| 10 | <% } %>
|
|---|
| 11 |
|
|---|
| 12 | <section class="pg-card">
|
|---|
| 13 | <div class="pg-lock">💶</div>
|
|---|
| 14 | <h2 class="pg-h2">Voor supporters</h2>
|
|---|
| 15 | <p class="pg-sub">
|
|---|
| 16 | Deze post is voor supporters van deze site. Steun je de maker op Patreon
|
|---|
| 17 | <% if (typeof pgCents !== 'undefined' && pgCents) { %>(vanaf €<%= (pgCents/100).toFixed(2) %>)<% } %>,
|
|---|
| 18 | dan ontgrendel je 'm met je passkey. Geen account, geen cookie.
|
|---|
| 19 | </p>
|
|---|
| 20 | <p class="pg-soon">Ontgrendelen met je Patreon-passkey komt eraan.</p>
|
|---|
| 21 | </section>
|
|---|
| 22 | </article>
|
|---|
| 23 |
|
|---|
| 24 | <style>
|
|---|
| 25 | .pg-navwrap { max-width: 720px; margin: 0.5rem auto 1.5rem; padding: 0 1rem; }
|
|---|
| 26 | .pg-page { max-width: 720px; margin: 0 auto 3rem; padding: 0 1rem; }
|
|---|
| 27 | .pg-title { font-family: var(--font-display, serif); font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0 0 1rem; }
|
|---|
| 28 | .pg-teaser { font-family: var(--font-body, serif); font-size: 1.1rem; line-height: 1.7; color: var(--ink); opacity: .95;
|
|---|
| 29 | -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent); mask-image: linear-gradient(180deg, #000 55%, transparent); }
|
|---|
| 30 | .pg-card { margin: 1.5rem 0 0; border: 1px solid color-mix(in srgb, var(--ink, #000) 16%, transparent); border-radius: 18px; padding: 30px 26px; text-align: center; }
|
|---|
| 31 | .pg-lock { font-size: 38px; margin-bottom: 6px; }
|
|---|
| 32 | .pg-h2 { font-size: 22px; margin: 0 0 8px; }
|
|---|
| 33 | .pg-sub { opacity: .85; line-height: 1.6; margin: 0 auto 12px; max-width: 34em; }
|
|---|
| 34 | .pg-soon { display: inline-block; padding: 10px 18px; border-radius: 10px; font-weight: 600;
|
|---|
| 35 | background: color-mix(in srgb, var(--accent, #6b8f71) 14%, transparent); color: var(--ink, inherit); }
|
|---|
| 36 | </style>
|
|---|