easydiffusion/ui/frontend/dist/index.html

20 lines
785 B
HTML
Raw Normal View History

2022-09-14 16:48:46 +02:00
<!DOCTYPE html>
<html lang="en">
2022-09-14 20:49:23 +02:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2022-09-28 18:19:44 +02:00
<link rel="icon" type="image/png" href="/media/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/media/favicon-32x32.png" sizes="32x32">
2022-09-17 20:18:05 +02:00
<meta name="color-scheme" content="dark light" />
2022-09-28 18:19:44 +02:00
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
2022-09-14 20:49:23 +02:00
<title>Stable Diffusion UI</title>
<script type="module" crossorigin src="/index.js"></script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<!-- The react app entry point. Currently no ui just poc importing and logging -->
<div id="root"></div>
</body>
2022-09-14 16:48:46 +02:00
</html>