-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (41 loc) · 2.03 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
<!doctype html>
<html lang='en'>
<head>
<title>Map My Article</title>
<meta charset='utf8'>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chosen/1.8.2/chosen.jquery.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/prism.min.js" type="text/javascript" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ol3/4.3.2/ol.js"></script></script>
<!-- <script src='js/common.js'></script> -->
<link href='http://fonts.googleapis.com/css?family=Ubuntu:400,400italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/themes/prism.min.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/chosen/1.8.2/chosen.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ol3/4.3.2/ol.css" type="text/css">
<link rel='stylesheet' href='css/feedmapper.css' />
</head>
<body>
<h1>Map My Article</h1>
<main class="article-container">
<p>search for a global development article on the Guardian</p>
<section>
<form id='article-search'>
<div class="side-by-side clearfix">
<select id="country" data-placeholder="choose country" style="width:350px;" class="chosen-select-deselect" tabindex="12">
<script src="js/country_dropdown.js"></script>
</select>
<button type='submit' id="fly-to-country" class="chosen-button">search</button>
</section>
<br clear="all">
<script src='js/searchresults.js'></script>
</main>
<aside>
<div class="container-fluid">
<div id="map">
</div>
</div>
</aside>
<script src='js/map.js'></script>
</body>