mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-29 11:43:41 +01:00
355870a750
This reverts commit1e3b4f9969
, reversing changes made toe0c0935d3a
.
20 lines
785 B
HTML
20 lines
785 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<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">
|
|
<meta name="color-scheme" content="dark light" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
|
|
<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>
|
|
</html>
|