source: Klonkt/src/views/pages/welcome.ejs@ 8ea3d0d

main
Last change on this file since 8ea3d0d was 5019e22, checked in by roboburr <roboburr@…>, 3 months ago

Branding: user-facing PrutCMS -> Klonkt (welcome heading, site-title fallback, deploy doc)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@…>

  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[7bc636b]1<div class="container welcome-page">
[5019e22]2 <h1>Welcome to Klonkt</h1>
[7bc636b]3 <p class="welcome-tagline">A self-hosted publishing platform.</p>
4
5 <% if (!user) { %>
6 <div class="welcome-actions">
[9e27d64]7 <a href="/auth/register" class="btn btn-primary">Beheerder aanmaken</a>
8 <a href="/auth/login" class="btn">Al een account? Inloggen</a>
[7bc636b]9 </div>
[9e27d64]10 <p class="welcome-note">Maak je beheerdersaccount aan om te beginnen — daarna is registratie gesloten.</p>
[7bc636b]11 <% } else { %>
12 <p>Hi <%= user.username %>! No site is configured yet.</p>
13 <% } %>
14</div>
15<style>
16.welcome-page { max-width: 600px; margin: 4rem auto; padding: 0 1rem; text-align: center; }
17.welcome-page h1 { font-family: var(--font-display, serif); font-size: 2.5rem; margin: 0 0 0.5rem; }
18.welcome-tagline { color: var(--ink-muted); margin-bottom: 2rem; font-size: 1.1rem; }
19.welcome-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 2rem 0; }
20.welcome-note { color: var(--ink-muted); font-size: 0.9rem; margin-top: 2rem; }
21</style>
Note: See TracBrowser for help on using the repository browser.