- Vendor web_template base.css/base.js (v1.2 bbec859) under public/web_template with sync script - Add views/layout.ejs (fixed upstream EJS comment delimiters, mobile drawer, cmd palette, keys help, WS status, theme toggle) and lib/render.js two-step renderer - Add page routes for /, /workers, /workflows, /executions, /quick, /scheduler (stub views) - helmet with strict nonce CSP (script-src-attr 'none'), /csp-report, report-only toggle - lib/pageauth.js: shared users upsert + HTML 401/403 for page routes - PULSE_DEV_READONLY guard disabling background writers for local testing - public/assets/app.js shared runtime (Pulse namespace, delegated actions, WS singleton, themed confirm modal) and app.css - eslint globals for browser files; ignore vendored assets Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01HamVMDrA8RqhyxmUHgiqRp
19 lines
659 B
Plaintext
19 lines
659 B
Plaintext
<%#
|
|
Placeholder page view. Rendered by lib/render.js when views/pages/<view>.ejs
|
|
does not exist yet, so the shell can be exercised before the page work
|
|
packages land.
|
|
%>
|
|
<div class="lt-page-header">
|
|
<h1 class="lt-page-title"><%= pageTitle || 'Page' %></h1>
|
|
</div>
|
|
<div class="lt-frame">
|
|
<div class="lt-empty-state">
|
|
<div class="lt-empty-state-icon">⚙</div>
|
|
<div class="lt-empty-state-title">Page under construction</div>
|
|
<div class="lt-empty-state-text">
|
|
This view has not been implemented yet. The shared shell, navigation and
|
|
assets are live; the page content lands with its work package.
|
|
</div>
|
|
</div>
|
|
</div>
|