- Create LayoutPreviewPage component for full-screen layout previews - Add preview route /themes/:themeId/layouts/:layoutId/preview to App routing - Update theme components with preview links and improved navigation - Fix iframe sandbox error by adding allow-scripts permission - Enhance template renderer with layout metadata support - Replace PostCSS with regex-only CSS parsing for browser compatibility - Add comprehensive standards documentation for code quality - Clean up CSS slot indicators to be always visible with descriptions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
432 B
HTML
11 lines
432 B
HTML
<div class="slide layout-content-slide">
|
|
<h1 class="slot title-slot" data-slot="title" data-placeholder="Slide Title" data-required>
|
|
{{title}}
|
|
</h1>
|
|
<h1 class="slot subtitle-slot" data-slot="subtitle" data-placeholder="Slide Subtitle" data-required>
|
|
{{subtitle}}
|
|
</h1>
|
|
<div class="slot content-area" data-slot="content" data-placeholder="Your content here..." data-multiline="true">
|
|
{{content}}
|
|
</div>
|
|
</div> |