-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 loc) · 2.07 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Calendar Story</title>
<meta name="generator" content="TextMate http://macromates.com/">
<meta name="author" content="Geoffrey Bilder">
<!-- Date: 2010-11-27 -->
<link rel="stylesheet" type="text/css" href="http://static.flowplayer.org/tools/css/overlay-apple.css"/>
<link rel="stylesheet" type="text/css" href="/calendar_story/css/calendar_story.css"/>
</head>
<body>
<h1>This is a calendar-based story</h1>
<p>Click on the dates in order to get the episode for that date.</p>
<div id="story_language" language="en"/>
<!-- external page is given in the href attribute (as it should be) -->
<a class="episode" date="2010-11-27" href="/calendar_story/episodes/en/2010-11-27.html" rel="#overlay">
<!-- remember that you can use any element inside the trigger -->
<button type="button">November 27th</button>
</a>
<!-- external page is given in the href attribute (as it should be) -->
<a class="episode" date="2010-11-27" href="/calendar_story/episodes/en/2010-11-27.html" rel="#overlay">
<!-- same as above but with an image instead of a button -->
<img alt="Day 1" src="/calendar_story/img/dates/27.png"></img>
</a>
<!-- another link. uses the same overlay -->
<a class="episode" date="2010-11-28" href="/calendar_story/episodes/en/2010-11-28.html" rel="#overlay">
<button type="button">November 28th</button>
</a>
<!-- another link. uses the same overlay -->
<a class="episode" date="2010-11-29" href="/calendar_story/episodes/en/2010-11-29.html" rel="#overlay">
<button type="button">November 29th</button>
</a>
<!-- overlayed element -->
<div class="apple_overlay" id="overlay">
<!-- the external content is loaded inside this tag -->
<div class="contentWrap"></div>
</div>
<script src="http://cdn.jquerytools.org/1.2.5/full/jquery.tools.min.js"></script>
<script src="/calendar_story/js/calendar_story.js"></script>
</body>
</html>