39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Projects Browser</title>
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png">
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Projects Browser <span id="stats"></span></h1>
|
|
<div class="controls">
|
|
<input type="text" class="search-input" id="search" placeholder="Search projects...">
|
|
<button class="filter-btn active" data-filter="all">All</button>
|
|
<button class="filter-btn" data-filter="running">Running</button>
|
|
<button class="filter-btn" data-filter="stopped">Stopped</button>
|
|
<button class="action-btn" id="screenshot-all">Screenshot All</button>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="grid" id="grid"></div>
|
|
|
|
<div class="modal-overlay" id="logs-modal">
|
|
<div class="modal">
|
|
<div class="modal-header">
|
|
<span id="logs-title">Logs</span>
|
|
<button class="modal-close" id="logs-close">×</button>
|
|
</div>
|
|
<div class="modal-body" id="logs-body"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://unpkg.com/centrifuge@5/dist/centrifuge.js"></script>
|
|
<script src="/app.js"></script>
|
|
</body>
|
|
</html>
|