-
Notifications
You must be signed in to change notification settings - Fork 0
/
Joe's List #3.html
73 lines (54 loc) · 1.94 KB
/
Joe's List #3.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
<!DOCTYPE html>
<!-- saved from url=(0036)http://localhost:5000/lists/14/owner -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="static/css/lists.css">
<style>
table {
margin-bottom: .5em;
}
</style>
<title>Joe's List #3</title>
</head>
<body>
<div class="main-container">
<h1>Joe's List #3</h1>
<div class="item">
<div class="list-item">
<div>1</div>
<div class="item-name">I</div>
</div>
<div class="list-item">
<div>2</div>
<div class="item-name">really</div>
</div>
<div class="list-item">
<div>4</div>
<div class="item-name">really</div>
</div>
<div class="list-item">
<div>5</div>
<div class="item-name">love</div>
</div>
<div class="list-item">
<div>5</div>
<div class="item-name">everyone</div>
</div>
<div class="list-item">
<div>0</div>
<div class="item-name">really</div>
</div>
</div>
<a href="http://localhost:5000/lists/14/edit"><button style="margin-bottom: .5em">Edit List</button></a><br>
<a href="http://localhost:5000/lists"><button>Home</button></a>
</div>
<script src="./Joe's List #3_files/sortable.js.download"></script>
<script>
let items = document.querySelector('.items')
new Sortable(items, {
animation: 200,
ghostClass: 'drag'
});
</script>
</body></html>