mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-08-18 20:16:38 +08:00
18 lines
455 B
HTML
18 lines
455 B
HTML
<!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> |