-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
67 lines (56 loc) · 2.51 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
<!DOCTYPE html>
<html>
<head>
<title>EBT Near Me</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<link rel="shortcut icon" href="favicon.ico" />
<link rel="apple-touch-icon" href="icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="icon.png">
<link rel="apple-touch-icon" sizes="114x114" href="icon.png">
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places,geometry"></script>
<script src="public/js/geolocationmarker-compiled.js"></script>
<!-- j Q U E R Y -->
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<!-- C U S T O M S T Y L E S -->
<link rel="stylesheet" href="public/css/app.css">
<!-- M O D E R N I Z E R -->
<script src="public/js/modernizer.js"></script>
<!-- T Y P E K I T -->
<script src="//use.typekit.net/ize7qgl.js"></script>
<script>try{Typekit.load();}catch(e){}</script>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-20825280-22', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="map-canvas"></div>
<div id="printable-list-div">
<h2 class="print-identity">EBT Near Me</h2>
<h3 class="print-header">EBT Retail and ATM Locations</h3>
<ul></ul>
</div>
<script src="public/js/app.js"></script>
<div id="header" class="header-content">
<img id="logo" class="logo-img" src="public/img/logo.png" alt="" name="logo">
<h1 id="title-thick" class="title">EBT</h1>
<h1 id="title-regular" class="title">Near</h1>
<h1 id="title-thin" class="title">Me</h1>
<div id="toggle-target">
<img id="toggle-icon" src="public/img/search.png" style="display:block" name="toggle-icon">
</div>
<input id="address-input" class="sb-search-input" placeholder="Search for locations near an address"
type="search" name="search" style="display:none">
</div>
</body>
<!-- Ethnio Activation Code -->
<script type="text/javascript" language="javascript" src="//ethn.io/12565.js" async="true" charset="utf-8"></script>
</html>