-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
141 lines (71 loc) · 3.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
TODO by ddan9
</title>
<meta name="description" content="Simple TODO List Application">
<meta name="keywords" content="Todo, TODO, List, TODO List, Web, Vue, Materialize, Simple, Simple TODO">
<meta name="author" content="ddan9">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light">
<meta name="theme-color" content="teal">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="cache-control" content="private, max-age=3155760000">
<meta http-equiv="pragma" content="private">
<meta http-equiv="expires" content="Sun, 01 Jan 2122 00:00:01 GMT">
<link rel="manifest" href="./manifest.json">
<link rel="icon" type="image/png" href="https://img.icons8.com/stickers/100/000000/task.png">
<link rel="stylesheet" hrep="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js">
</script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js">
</script>
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.0">
</script>
<style type="text/css">
html {
scroll-behavior: smooth;
}
.fade-enter-active {
transition: opacity 0.2s;
}
.fade-leave-active {
transition: opacity 0.5s;
}
.fade-enter, .fade-leave-to {
opacity: 0;
}
.collection-background-transition {
transition: background-color 0.2s ease;
}
.footer-tip-transition {
transition: opacity 0.2s ease;
}
</style>
</head>
<body style="display: flex; min-height: 100vh; flex-direction: column; scroll-behavior: smooth">
<div class="app" id="app" style="display: flex; min-height: 100vh; flex-direction: column; scroll-behavior: smooth">
<app-loading v-bind:loadingshow="loadingShow">
</app-loading>
<app-unloader v-bind:unloadershow="unloaderShow">
</app-unloader>
<custom-navbar v-bind:search="search" v-bind:reload="reload">
</custom-navbar>
<main style="flex: 1 0 auto">
<task-list v-bind:selectelement="selectElement" v-bind:dropdowninit="dropdownInitialize" v-bind:showswapbutton="showSwapButton" v-bind:swaptask="swapTask" v-bind:changefullname="changeFullName" v-bind:todos="this.todos" v-bind:date="dateNow" v-bind:fullname="fullName" v-bind:greetingtime="greetingTime" v-bind:removetask="removeTask" v-bind:edittask="editTask">
</task-list>
<form-task v-bind:addtask="addTask" v-bind:scrollfocused="scrollFocused" v-bind:todos="this.todos" v-bind:clear="clear" v-bind:cleartextarea="clearTextArea" v-bind:cleartextareabutton="clearTextAreaButton" v-bind:cleartextareastate="clearTextAreaState">
</form-task>
<float-button v-bind:todos="this.todos" v-bind:changestatement="changeStatement" v-bind:floatbuttonscroll="floatButtonScroll" v-bind:statement="this.statement">
</float-button>
</main>
<custom-footer v-bind:checkconnection="checkConnection" v-bind:todos="this.todos" v-bind:date="dateNow" v-bind:currenttip="currentTip">
</custom-footer>
</div>
<script type="text/javascript" src="./index.js">
</script>
</body>
</html>