-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (56 loc) · 2.68 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="application-name" content="cmv">
<meta name="description" content="CMV - The Configurable Map Viewer. Community supported open source mapping framework. Works with the Esri JavaScript API, ArcGIS Server, ArcGIS Online and more. Make it your own!">
<meta name="author" content="cmv.io">
<link rel="shortcut icon" href="./favicon.png">
<title>Configurable Map Viewer</title>
<link rel="stylesheet" type="text/css" href="https://js.arcgis.com/3.20compact/esri/css/esri.css">
<link rel="stylesheet" type="text/css" href="css/theme/flat/flat.css">
<link rel="stylesheet" type="text/css" href="css/cmv-theme-overrides.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body class="cmv flat">
<div class="appHeader">
<div class="headerLogo">
<img alt="logo" src="images/DLCDlogo.png" height="54" />
</div>
<div class="headerTitle">
<span id="headerTitleSpan">
Future Estuarine Flooding
</span>
<div id="subHeaderTitleSpan" class="subHeaderTitle">
Sea level rise coupled with flood events in 2030, 2050, and 2100
</div>
</div>
<div class="search">
<div id='geocodeDijit'>
</div>
</div>
<div class="headerLinks">
<div id="helpDijit">
</div>
</div>
</div>
<script type="text/javascript">
var s = window.location.search, q = s.match(/locale=([^&]*)/i);
var locale = (q && q.length > 0) ? q[1] : null;
window.dojoConfig = {
locale: locale,
async: true
};
</script>
<!--[if lt IE 9]>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.0.3/es5-shim.min.js"></script>
<![endif]-->
<script src="https://js.arcgis.com/3.20compact/"></script>
<script src="js/config/app.js"></script>
</body>
</html>