-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (37 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Startpage</title>
<link rel="stylesheet/less" href="less/main.less">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/less.js/3.12.2/less.min.js" integrity="sha512-rCgfeoOQxpi926f8I0zdBVUY9q/2SKXqrdIy23yEPuvWvJ8/jwDqhQ0eJJhS9L8ySZsmbEQp3LCgPTiaAk5WVw==" crossorigin="anonymous"></script> -->
<script type="text/javascript" src="js/less.min.js"></script>
</head>
<body>
<main>
<section>
<div id="bookshelf" class="widget"></div>
<div id="powerline" class="widget">
<div class="panel-tabs"></div>
<div class="applets"></div>
</div>
</section>
<aside id="todo-list" class="widget">
<button class="add-toggler">+</button>
<input type="text" class="add-input" placeholder="New task..." autocomplete="off" spellcheck="false" />
<div class="tasks"></div>
</aside>
</main>
<div id="command">
<div class="input">
<input disabled class="autocomplete" />
<input type="text" placeholder="Command..." autocomplete="off" spellcheck="false">
</div>
<ul class="suggestions"></ul>
</div>
<script src="js/strftime.min.js"></script>
<script type="module" src="js/main.js" defer></script>
</body>
</html>