Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- index.html +27 -19
index.html
CHANGED
|
@@ -1,19 +1,27 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>ComfyUI Workflow</title>
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
|
| 10 |
+
background-color: #000000;
|
| 11 |
+
color: #f5f5f7;
|
| 12 |
+
padding: 40px;
|
| 13 |
+
}
|
| 14 |
+
pre {
|
| 15 |
+
background: #1d1d1f;
|
| 16 |
+
padding: 24px;
|
| 17 |
+
border-radius: 12px;
|
| 18 |
+
overflow-x: auto;
|
| 19 |
+
}
|
| 20 |
+
</style>
|
| 21 |
+
</head>
|
| 22 |
+
<body>
|
| 23 |
+
<h1>ComfyUI Workflow</h1>
|
| 24 |
+
<p>Error: Invalid JSON format</p>
|
| 25 |
+
<pre></pre>
|
| 26 |
+
</body>
|
| 27 |
+
</html>
|