-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (46 loc) · 1.84 KB
/
index.html
File metadata and controls
48 lines (46 loc) · 1.84 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
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Desktop</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🖥️</text></svg>">
</head>
<body>
<div id="desktop">
<div id="desktop-folder" class="folder" data-type="folder" data-path="keyhan" style="top: 20px; left: 20px;">
<img src="img/folder-icon.png" alt="Folder">
<span>keyhan</span>
</div>
<div id="misc-folder" class="folder" data-type="folder" data-path="misc" style="top: 35px; left: 20px;">
<img src="img/folder-icon.png" alt="Folder">
<span>misc</span>
</div>
<div id="selectionBox"></div>
</div>
<template id="windowTemplate">
<div class="window">
<div class="window-header">
<div class="window-controls">
<button class="close"></button>
<button class="minimize"></button>
<button class="maximize"></button>
</div>
<div class="window-title"></div>
</div>
<div class="window-navigation">
<input type="button" class="back" onclick="navigateBack(this)"></input>
<input type="button" class="forward" onclick="navigateForward(this)"></input>
</div>
<div class="window-content">
<!-- Folder and file contents will be inserted here -->
</div>
<div class="window-footer">
<div class="breadcrumb"></div>
</div>
</div>
</template>
</body>
<script src="scripts.js"></script>
</html>