forked from corintxt/automation-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (76 loc) · 3.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>State Map</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="http://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="src/css/normalize.css">
<link rel="stylesheet" href="src/css/skeleton.css">
<link rel="stylesheet" href="src/css/leaflet.css">
<link rel="stylesheet" href="src/css/main.css">
<!-- JS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="./src/js/vue.js"></script>
<script src="./src/js/leaflet.js"></script>
<script src="./src/data/states-data.js"></script>
<script src="./src/data/quotient-info.js"></script>
<script src="./src/data/all-quotient-info.js"></script>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="src/assets/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container" id="vue" style="margin-bottom: 10%">
<div class="row" style="margin-top: 10%">
<div class="one-half column">{{ message }}</div>
<div class="one-half column u-pull-right">
<h1>Automation Map</h1>
<h2>A Lab12 Project</h2>
</div>
</div>
<hr> <!-- end header -->
<div class="row" style="margin-top: 5%">
<div class="one-half column">
<h3>Industry: {{ selected }}</h3>
</div>
<div class="one-half column">
<!-- to do: populate list with a v-for loop -->
<label for="industrySelect">Select an industry:</label>
<select v-model="selected" v-on:change="changeIndustry" class="u-full-width">
<option disabled value="">Please select one</option>
<option v-for="option in options" v-bind:value="option.text">
{{ option.text }}
</option>
</select>
</div>
</div>
<hr>
<div class="row">
<div id="map1"></div>
</div>
<div class="row">
<div id="unemployment-content">
<p>{{ par1 }}</p>
<p>{{par2}} </p>
</div>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="src/js/vue-code.js"></script>
<script src="src/js/app.js"></script>
</body>
</html>