File size: 472 Bytes
0c85e62 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <!DOCTYPE html>
<html>
<head>
<title>rgthree-comfy: Models Manager</title>
<link href="./models.css" rel="stylesheet">
<!-- <link rel="icon" href="./favicon.webp"> -->
</head>
<body>
<header>
<input type="text" placeholder="Search" id="searchbox" />
</header>
<ul id="models-list"></ul>
<script type="module">
import {ModelsInfoPage} from './models_info_page.js';
window.page = new ModelsInfoPage();
</script>
</body>
</html> |