forked from MinnPost/legislature-tracker
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
70 lines (57 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>FL Legislature Tracker</title>
<meta name="viewport" content="width=device-width, initial-scale=1"></meta>
<link type="text/plain" rel="author" href="humans.txt" />
<!-- Include CSS -->
<link rel="stylesheet" href="css/all.css" type="text/css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/ie.css" type="text/css">
<![endif]-->
<script type="text/javascript" src="//use.typekit.net/yrz4mlj.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body>
<style type="text/css">
.ls .categories-container {
background: none;
}
</style>
<!-- Application HTML -->
<div class="application-container">
<h1>FL Legislation Tracker</h1>
<section id="legislature-tracker-container">
</section>
</div>
<!-- Application libraries and JS -->
<script type="text/javascript" src="dist/js/legislature-tracker.libs.js"></script>
<script type="text/javascript" src="dist/js/legislature-tracker.latest.min.js"></script>
<!-- Run application -->
<script type="text/javascript">
(function($, w, undefined) {
var options = _(LT.defaultOptions).extend({
el: '#legislature-tracker-container',
state: 'FL',
session: '2014',
OSKey: '1a9d7ed2b24348a7be264c5c3dad1bbe',
eKey: '1ZYbhoIzhLjGYaro_znVkUOwDU2LJqRxIzutSzGwtDac',
imagePath: 'images/'
});
options['wordTranslations']['chamber']['lower'] = 'House';
var app = new LT.Application(options);
})(jQuery, window);
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-39398830-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>
</body>
</html>