-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (35 loc) · 1.82 KB
/
index.html
File metadata and controls
41 lines (35 loc) · 1.82 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebPaneDesk</title>
<link rel="preconnect" href="https://cdn.jsdelivr.net">
<link rel="preload" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/css/all.min.css" as="style">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/css/all.min.css">
<link rel="stylesheet" href="./dist/DeskUI.css">
<!-- <link rel="preload" href="https://cdn.jsdelivr.net/gh/pardnchiu/PDExtension-js@1.0.1/js/PDExtension.min.js" as="script"> -->
<script src="https://cdn.jsdelivr.net/gh/pardnchiu/PDRenderKit@1.0.0/dist/PDRenderKit.js" copyright="Pardn Ltd" defer></script>
<!-- <link rel="preload" href="https://cdn.jsdelivr.net/npm/@pardnchiu/quickui@0.6.7/dist/QuickUI.js" as="script" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/@pardnchiu/quickui@0.6.7/dist/QuickUI.js" defer crossorigin="anonymous"></script> -->
<script type="module" src="./static/js/index.js"></script>
</head>
<body id="page">
<section class="pin">
<span>DeskUI 一款純 HTML / JS 開發的視窗管理模組 | 邱敬幃 Pardn Chiu</span>
</section>
<section class="shortcut">
</section>
<section class="dock">
<button @click="openFolder">
<img src="./dist/icons/folder.svg" alt="">
</button>
<button @click="openNode">
<img src="./dist/icons/note.svg" alt="">
</button>
<button @click="openBroswer">
<img src="https://joball.tw/logo.png" alt="">
</button>
</section>
</body>
</html>