-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 792 Bytes
/
index.html
File metadata and controls
33 lines (30 loc) · 792 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="cache-control" content="max-age=0"/>
<meta http-equiv="cache-control" content="no-cache"/>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="format-detection" content="telephone=no"/>
<title>demo</title>
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<div class="container">
<ul class="list">
</ul>
</div>
<script src="js/lib/sea-debug.js"></script>
<script>
seajs.config({
base: './js/'
})
</script>
<script>
seajs.use('ui/ui.js', function () {
console.log('has loaded');
});
</script>
</body>
</html>