forked from chrislkeller/nwsmkr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsis-slide.html
136 lines (104 loc) · 3.57 KB
/
sis-slide.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE HTML>
<html lang="en">
<!-- BEGIN DOC HEADER -->
<head>
<!-- BEGIN META -->
<meta charset="utf-8" />
<title>nwsmkr</title>
<meta name="description" content="We'll change how you present news">
<meta name="keywords" content="visualizing connections, newsmakers, public figures, six degrees of separation">
<meta name="author" content="nwsmkr, © 2011">
<meta name="google-site-verification" content="ppHjGpSdVGKZmSCI1HdahgqU3faBzvgsOwLXZisQMo0" />
<meta name="robots" content="index,nofollow" />
<meta content="yes" name="apple-mobile-web-app-capable" />
<meta name="viewport" content="initial-scale = 0.5, width=device-width, maximum-scale=0.6667, user-scalable=yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- END META -->
<!-- BEGIN FAVICON/MOBILE TOUCH ICON -->
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" href="icon.png">
<!-- END FAVICON/MOBILE TOUCH ICON -->
<!-- BEGIN CSS -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:600&v2' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/coming-soon.css">
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="css/ie-6.css" />
<![endif]-->
<!-- END CSS -->
<!-- BEGIN SCRIPTS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script src="scripts/new-query.js"></script>
<script src="scripts/jquery.validate.js" type="text/javascript"></script>
<script src="scripts/carousel.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#commentForm").validate({meta: "validate"});
});
</script>
</head>
<!-- END DOC HEADER -->
<!-- BEGIN BODY -->
<body>
<!-- BEGIN HEADER LOGO -->
<div id="header-logo">
<a href="http://www.nwsmkr.com/"><img src="images/logo.gif"></a>
</div>
<!-- BEGIN CONTENT -->
<div id="content">
<!-- BEGIN DIV IN WHICH TO DISPLAY RESULTS -->
<div id="results">
<div id="carousel">
<div id="buttons">
<a href="#" id="prev">prev</a>
<a href="#" id="next">next</a>
<div class="clear"></div>
</div>
<div class="clear"></div>
<div id="slides">
<ul>
<!-- CONTENT HERE -->
</ul>
<div class="clear"></div>
</div>
</div>
</div>
<!-- END DIV IN WHICH TO DISPLAY RESULTS -->
<!-- BEGIN FORM -->
<div id="contact-form">
<!-- PASS SEARCH QUERY TO API -->
<input type="text" id="query" class="required" value="Enter a person, company or organization" onclick="clickclear(this, 'Enter a person, company or organization')" onblur="clickrecall(this,'Enter a person, company or organization')" />
<button type="submit" name="submit" class="form-submit-button" >Search Connections</button>
</div>
<!-- END FORM -->
</div>
<!-- END CONTENT -->
<!-- BEGIN SCRIPTS -->
<script type="text/javascript">
function clickclear(thisfield, defaulttext) {
if (thisfield.value == defaulttext) {
thisfield.value = "";
}
}
function clickrecall(thisfield, defaulttext) {
if (thisfield.value == "") {
thisfield.value = defaulttext;
}
}
</script>
<!-- END SCRIPTS -->
<!-- BEGIN GOOGLE ANALYTICS CODE -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-24670839-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- END GOOGLE ANALYTICS CODE -->
</body>
<!-- END BODY -->
</html>
<!-- END DOC -->