56 lines
2.2 KiB
HTML
56 lines
2.2 KiB
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/svg+xml" href="/icons/icon.svg" />
|
|
<title>Silma AI Aide</title>
|
|
</head>
|
|
<body>
|
|
<main class="side-panel-shell">
|
|
<section class="app-panel" aria-label="Silma AI Aide side panel">
|
|
<nav class="toolbar" aria-label="Aide sections">
|
|
<button class="tool-button" type="button" data-view="urls" title="URLs">
|
|
<i data-lucide="list"></i>
|
|
<span>URLs</span>
|
|
</button>
|
|
<button class="tool-button" type="button" data-view="repos" title="Gitea repos">
|
|
<i data-lucide="git-branch"></i>
|
|
<span>Gitea Repos</span>
|
|
</button>
|
|
<button class="tool-button" type="button" data-view="open-issues" title="Issues">
|
|
<i data-lucide="list-checks"></i>
|
|
<span>Issues</span>
|
|
</button>
|
|
<button id="add-issue" class="tool-button" type="button" data-view="add-issue" disabled title="Add issue">
|
|
<i data-lucide="circle-plus"></i>
|
|
<span>Add Issue</span>
|
|
</button>
|
|
<label class="tool-select-label" title="Management">
|
|
<i data-lucide="bot"></i>
|
|
<select id="manage-view-select" aria-label="Management section">
|
|
<option value="">Manage</option>
|
|
<option value="agents">Agents</option>
|
|
<option value="prompts">Prompts</option>
|
|
<option value="workspaces">Workspaces</option>
|
|
</select>
|
|
</label>
|
|
</nav>
|
|
|
|
<section class="content-panel">
|
|
<div id="view-header" class="view-header"></div>
|
|
<div id="view-content" class="view-content"></div>
|
|
</section>
|
|
|
|
<footer class="statusbar">
|
|
<span id="status" role="status">Ready.</span>
|
|
<button id="refresh-data" class="icon-button" type="button" title="Refresh data">
|
|
<i data-lucide="refresh-cw"></i>
|
|
</button>
|
|
</footer>
|
|
</section>
|
|
</main>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|