forked from chocolatey/choco-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (88 loc) · 4.87 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en" class="chocolatey-choco-theme-directory">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#5c9fd8">
<meta name="description" content="A page of links to report and preview choco-theme running on a localhost." />
<link rel="shortcut icon" href="http://127.0.0.1:8080/images/favicons/favicon.ico" type="image/x-icon">
<title>Preview Directory</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet">
<link rel="stylesheet" href="http://127.0.0.1:8080/dist/css/chocolatey.min.css">
<script type="text/javascript" src="http://127.0.0.1:8080/dist/js/theme-toggle.min.js"></script>
</head>
<body>
<header class="text-bg-body-secondary px-3 py-3 position-relative d-flex align-items-center justify-content-between">
<img class="h-px-50" src="http://127.0.0.1:8080/images/global-shared/logo.svg" alt="Chocolatey Software" />
<div class="dropdown dropdown-theme">
<button class="btn nav-link dropdown-toggle py-0 px-0 w-px-30 d-flex align-items-center" type="button" aria-expanded="false" data-bs-toggle="dropdown" aria-label="Toggle theme (auto)">
<span class="theme-icon-active d-flex"><i></i></span>
</button>
<ul class="dropdown-menu dropdown-menu-end">
<li>
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="light" aria-pressed="false">
<i class="fa-solid fa-sun me-2 opacity-50" data-ct-theme-icon="fa-sun"></i>
Light
<i class="fa-solid fa-check ms-auto d-none"></i>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="dark" aria-pressed="true">
<i class="fa-solid fa-moon me-2 opacity-50" data-ct-theme-icon="fa-moon"></i>
Dark
<i class="fa-solid fa-check ms-auto d-none"></i>
</button>
</li>
<li>
<button type="button" class="dropdown-item d-flex align-items-center" data-bs-theme-value="auto" aria-pressed="false">
<i class="fa-solid fa-circle-half-stroke me-2 opacity-50" data-ct-theme-icon="fa-circle-half-stroke"></i>
Auto
<i class="fa-solid fa-check ms-auto d-none"></i>
</button>
</li>
</ul>
</div>
</header>
<main class="my-auto">
<div class="container">
<div class="card card-body my-5">
<h1 class="mb-3 text-center">Preview Directory</h1>
<div class="table-responsive">
<table id="tableMonitorPorts" class="table table-striped table-bordered">
<thead>
<tr>
<th scope="col">Actions</th>
<th scope="col">Port Status</th>
<th scope="col">Port</th>
<th scope="col">Folder Name</th>
<th scope="col">Option</th>
</tr>
</thead>
<tbody>
<template id="templateMonitorPorts">
<tr>
<td class="monitor-actions align-middle">
<a class="monitor-link btn btn-primary opacity-0 disabled" href="#" target="_blank">View</a>
</td>
<td class="monitor-status align-middle">
<span class="badge rounded-pill text-bg-secondary text-capitalize">Waiting</span>
</td>
<td class="monitor-port align-middle"></td>
<td class="monitor-folder align-middle"></td>
<td class="monitor-option align-middle"></td>
</tr>
</template>
</tbody>
</table>
</div>
</div>
</div>
</main>
<footer class="flex-shrink-0 text-bg-body-secondary border-top text-center px-3 pt-3">
<p>© 2024 Chocolatey Software, Inc.</p>
</footer>
<script type="text/javascript" src="http://127.0.0.1:8080/dist/js/preview.min.js"></script>
</body>
</html>