019a3363c5
CI / test (push) Has been cancelled
Atmospheric design is now the default for everyone: - User.getDesignVersion() returns 'v2' when unset (was 'v1') - All Twig templates default the cookie read to 'v2' - SettingsView 'Design (beta)' section removed entirely along with the selectDesign() handler and currentDesign computed The /api/user/design endpoint stays in place so the design_version column can still be set programmatically (or migrated later), but the UI no longer exposes it as a user-facing choice. Existing users with explicit 'v1' in their DB row continue to see v1 — their preference persists. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
27 lines
1.2 KiB
Twig
27 lines
1.2 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="en" data-design="{{ app.request.cookies.get('wevisto_design')|default('v2') }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" type="image/svg+xml" href="/build/favicon.svg?v=20260515-vviewfinder">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/build/icons/favicon-32.png?v=20260515-vviewfinder">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/build/icons/favicon-16.png?v=20260515-vviewfinder">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/build/icons/apple-touch-icon.png?v=20260515-vviewfinder">
|
|
<link rel="stylesheet" href="/css/wevisto-design.css">
|
|
<title>Link invalid — WeVisto</title>
|
|
<style>
|
|
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
|
|
body{font-family:system-ui,sans-serif;min-height:100dvh;background:#fdf6ee;color:#3a2e22;display:flex;align-items:center;justify-content:center;padding:2rem 1rem}
|
|
.card{width:100%;max-width:420px;text-align:center}
|
|
h1{font-size:1.4rem;font-weight:700;margin-bottom:.5rem}
|
|
p{color:#8a7060;font-size:.875rem}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<h1>This link is no longer valid</h1>
|
|
<p>{{ reason }}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|