Spaces:
Running
Running
File size: 1,083 Bytes
9d83527 bfe3fa4 9d83527 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
<!doctype html>
<html lang="en" data-bs-theme="light">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Inspect View</title>
<link rel="icon" href="./assets/favicon.svg" />
<script>
// Forward the theme (dark or light) onto the root html element
// this parameter will tend to appear when the view is hosted within
// an iframe (e.g. in vscode)
const urlParams = new URLSearchParams(window.location.search);
const theme = urlParams.get("inspectLogviewThemeCategory");
if (theme) {
document.documentElement.setAttribute("data-text-highlight", theme);
document.documentElement.setAttribute("data-bs-theme", theme);
}
</script>
<script type="module" crossorigin src="./assets/index.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index.css">
<script id="log_dir_context" type="application/json">{"log_dir": "logs"}</script>
</head>
<body style="min-width: 450px">
<div id="app"></div>
</body>
</html>
|