-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
142 lines (120 loc) · 5.45 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<html lang="en">
<head>
<title> Custom Drive </title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header">
<button id="addFolder"> Add Folder </button>
<button id="addTextFile"> Add Text File </button>
<button id="addAlbum"> Add Album </button>
</div>
<div id="breadcrumb">
<a purpose = "path" rid = "-1"> Home </a>
</div>
<div id="container">
</div>
<div id="app">
<div id = "app-title-bar">
<div id="app-title"> Title will come here </div>
<div id="win-actions">
<!-- -->
<span class="material-icons"> minimize </span>
<span class="material-icons"> fullscreen </span>
<span id="app-close" class="material-icons"> close </span>
<!-- -->
</div>
</div>
<div id = "app-menu-bar"> </div>
<div id = "app-body"> </div>
</div>
<template id="templates">
<!-- template for folder -->
<div class="folder" rid="" pid="">
<span action="rename"> Rename </span>
<span action="delete"> Delete </span>
<span action="view"> View </span>
<div purpose="name"> </div>
</div>
<a purpose = "path" rid = "-1"> </a>
<!-- template for text file -->
<div class="text-file" rid="" pid="">
<span action="rename"> Rename </span>
<span action="delete"> Delete </span>
<span action="view"> View </span>
<div purpose="name"> </div>
</div>
<!-- template for album -->
<div class="album" rid="" pid="">
<span action="rename"> Rename </span>
<span action="delete"> Delete </span>
<span action="view"> View </span>
<div purpose="name"> </div>
</div>
<!-- template for notepad -->
<div purpose="notepad-menu" class="notepad-menu">
<span pressed="false" action="save" class="material-icons"> save </span>
<span pressed="false" action="bold" class="material-icons"> format_bold </span>
<span pressed="false" action="italic" class="material-icons"> format_italic </span>
<span pressed="false" action="underline" class="material-icons"> format_underline </span>
<input type="color" action="bg-color">
<input type="color" action="fg-color">
<select action="font-family">
<option value="monospace"> Monospace </option>
<option value="serif"> Serif </option>
<option value="sans-serif"> Sans-Serif </option>
<option value="cursive"> Cursive </option>
<option value="fantasy"> Fantasy </option>
</select>
<select action="font-size">
<option value="14"> 14 </option>
<option value="16"> 16 </option>
<option value="18"> 18 </option>
<option value="20"> 20 </option>
<option value="22"> 22 </option>
<option value="24"> 24 </option>
<option value="26"> 26 </option>
<option value="28"> 28 </option>
</select>
<span action="download" class="material-icons">download</span>
<span action="forUpload" class="material-icons">upload</span>
<input action="upload" type="file">
<a purpose="download" href="https://www.google.com"> Link </a>
</div>
<div purpose="notepad-body" class="notepad-body">
<textarea> Start writing from here !! </textarea>
</div>
<!-- template for album menu and body -->
<div purpose="album-menu" class="album-menu">
<span action="save" class="material-icons">save</span>
<span action="download" class="material-icons">download</span>
<span action="upload" class="material-icons">upload</span>
<span action="add" class="material-icons">add</span>
<span action="delete" class="material-icons">delete</span>
<span action="left" class="material-icons">keyboard_double_arrow_left</span>
<span action="right" class="material-icons">keyboard_double_arrow_right</span>
<span action="play" class="material-icons">play_arrow</span>
<span action="pause" class="material-icons">pause</span>
</div>
<div purpose="album-body" class="album-body">
<div class="picture-list">
<!-- <img src="https://photographylife.com/wp-content/uploads/2020/03/Dan-Ballard-Landscapes-6.jpg">
<img src="https://photographylife.com/wp-content/uploads/2020/03/Dan-Ballard-Landscapes-3.jpg" > -->
</div>
<div class="picture-view">
<div class="move-left">
<span action="left" class="material-icons">keyboard_double_arrow_left</span>
</div>
<div class="picture-main">
<img src="" alt=" Please Select an image ">
</div>
<div class="move-right">
<span action="right" class="material-icons">keyboard_double_arrow_right</span>
</div>
</div>
</div>
</template>
<script type="text/javascript" src="main.js"></script>
</body>
</html>