refactor(layout-review): inline assets beside pages

Move app.css and shell.js into layout-review/ alongside the .html files
and reference them by bare filename; drop the assets/ subfolder.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-08 15:43:31 +00:00
parent b6c39d7a09
commit 58d0009849
15 changed files with 25 additions and 25 deletions

View File

@@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Layout review — Combine Files</title>
<link rel="stylesheet" href="../assets/app.css">
<link rel="stylesheet" href="app.css">
</head>
<body data-page="07_multi_file_merger">
<div class="dt-app">
@@ -78,6 +78,6 @@
</main>
</div>
<footer class="dt-footer" id="dt-footer"></footer>
<script src="../assets/shell.js"></script>
<script src="shell.js"></script>
</body>
</html>