-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.html
More file actions
60 lines (41 loc) · 1.44 KB
/
data.html
File metadata and controls
60 lines (41 loc) · 1.44 KB
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
<!DOCTYPE html>
<html>
<head>
<title>data</title>
<script>
var film ={
"name": "Euphoric Lampshade",
"director":"Asher Mones",
"producer":"Regina Spanolo",
"year":"2012",
"location":"Cape Grove Isle of Man"
}
var actors={
"Karin":"Harriet Anderson",
"David":"Gunnar Björnstrand",
"Martin":"Max von Sydow",
"Minus":"Lars Passgård",
}
var acts={
"act1":"welcome to the Cape of the isle of man",
"shot list":[
{"shot":"people arrive on isle"},
{"shot":"feast on the flesh of the giant boar"},
{"shot":"play of the great swapping and the lotus blossom "},
{"shot":"aside between Harin and Minus"},
{"shot":"everyone falls asleep in the grassy field"},
]
"act2":"behind the veil of broken glass",
"shot list2":[
{"shot":"Karin and Minus row out into the distance"},
{"shot":"in the distance there is a clap of thunder"},
{"shot":"who will rescue David from his inner demons"},
{"shot": "Karin and Minus suffer from heat exposure "},
{"shot":"Martin reads by the lamplight"},
]
}
</script>
</head>
<body>
</body>
</html>