-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (67 loc) · 2.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Just a Kanban Board... The true whiteboard experience</title>
<meta charset="utf-8" />
<meta name="description" content="Just a Kanban Board is well... Just a Kanban board. It is similar to the physical whiteboard experience since it has minimal features and it gives the user freedom in the sticky notes placement." />
<!--<meta name="viewport" content="width=device-width, initial-scale=1" />-->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
<base href="./src/">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=Varela+Round"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript>
<link
href="https://fonts.googleapis.com/css2?family=Varela+Round"
rel="stylesheet"
type="text/css"
/>
</noscript>
<!--Do NOT preload! Since it would cause an higher Cumulative Layout Shift-->
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="static/favicon.ico" type="image/ico"/>
<link rel="shortcut icon" type="image/x-icon" href="static/favicon.ico">
<link rel="apple-touch-icon" href="static/apple-touch-icon.png"/>
<script defer src="https://kit.fontawesome.com/787445dd57.js" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/interactjs/dist/interact.min.js"></script>
<script defer src="app.js" type="module"></script>
<meta name="google-site-verification" content="uiZW_Lev2m5x5utZIUgGF2w-9sQ6shGlSkWml5jjPT4" />
</head>
<body>
<header>
<div class="navbar">
<div class="navbar-left">
<h1>Just a Kanban board</h1>
<h2>As the title says: just a kanban board, the true whiteboard experience.</h2>
</div>
<div class="navbar-right">
<button class="navbar-btn-add-note" id="navbar-btn-add-note">
<span>Add a note</span>
<i class="merged-icon">
<i class="fa-solid fa-note-sticky">
<i class="fa-solid fa-plus" style="color: #ffffff"></i>
</i>
</i>
</button>
</div>
</div>
</header>
<main id="board" class="board" board-id="0">
<board-column class="board-column board-column-skeleton">
<button id="add-column-btn">
<div>
<i class="fa-regular fa-square-plus"></i>
<br>
<br>
<p>Add a column</p>
</div>
</button>
<board-column/>
</main>
</body>
</html>