forked from wnyc/Timeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·98 lines (83 loc) · 3.42 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css">
<script src="js/libs/modernizr-2.5.3.min.js"></script>
</head>
<body>
<div id="page">
<header id="header">
<div class="main-header clearfix">
<h1>Balance Media's Vertical Timeline</h1>
</div>
</header>
<div role="main" class="clearfix">
<div id="sort-buttons">
<a class="sort-newest active" href="#"><span>NEWEST FIRST</span></a>
<a class="sort-oldest" href="#"><span>OLDEST FIRST</span></a>
</div>
<div id="timeline">
<div id="line-container">
<div id="line"></div>
</div>
</div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.1.min.js"><\/script>')</script>
<script src="js/handlebars.js"></script>
<script src="js/tabletop.js"></script>
<script src="js/plugins.js"></script>
<script src="js/script.js"></script>
<script id="year-marker-template" type="text/x-handlebars-template">
<div class="item year-marker">
<div class="inner">
<div class="inner2">
<div class="timestamp">{{timestamp}}</div>
<div class="year">{{year}}</div>
</div>
</div>
</div>
</script>
<script id="post-template" type="text/x-handlebars-template">
<div class="item post">
<div class="inner">
<div class="timestamp">{{timestamp}}</div>
<div class="title"><h3>{{title}}</h3></div>
<div class="date">{{display_date}}</div>
<div class="body">
{{#if photo_url}}
<img src="{{photo_url}}" alt="">
{{/if}}
{{#if caption}}
<div class="caption">({{caption}})</div>
{{/if}}
{{#if body}}
<div class="text">{{body}}</div>
{{/if}}
<div class="clearfix">
{{#if read_more_url}}
<a target="_blank" class="more" href="{{read_more_url}}">READ MORE</a>
<div class="share">
<a href="#" class="share-trigger"></a>
<div class="share-popup">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="{{read_more_url}}" data-text="Tweet" data-count="none">Tweet</a>
<a class="facebook-share-button" name="fb_share" type="button" share_url="{{read_more_url}}">Share</a>
</div>
</div>
{{/if}}
</div>
</div>
</div>
</div>
</script>
</body>
</html>