This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
forked from ModelEarth/apps
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
108 lines (80 loc) · 3.86 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Local App Interfaces</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
<script type="text/javascript" src="../localsite/js/d3.v5.min.js" id="/localsite/js/d3.v5.min.js"></script>
<script type="text/javascript" src="../localsite/js/jquery.min.js" id="/localsite/js/jquery.min.js"></script>
<script type="text/javascript" src="../localsite/js/showdown.min.js" id="/localsite/js/showdown.min.js"></script>
<script type="text/javascript" src="js/apps-menus.js" id="/apps/js/apps-menus.js"></script>
<script type="text/javascript" src="js/apps-impact.js" id="/apps/js/apps-impact.js"></script>
<script>
if(typeof param=='undefined'){ var param={}; }
param.state = 'HI'
param.indicators = "GHG,GCC,MGHG,OGHG,HRSP,OZON,SMOG,HAPS,ENRG,WATR"
</script>
<script type="text/javascript" src="../localsite/js/localsite.js?display=everything"></script>
<script>
loadMarkdown("apps.md", "readmeDiv", "_parent");
renderImpactWidget();
// School app menu
if(typeof menu=='undefined'){ var menu={}; }
menu = {"home":[],"composting":[],"biodiesel":[]}
menu.home.img = "/apps/school/img/hero/ses.jpg"
menu.home.page = "/apps/school/"
menu.composting.img = "/apps/school/img/hero/composting.jpg"
menu.composting.page = "/apps/composting/"
menu.biodiesel.img = "/apps/school/img/hero/biodiesel.jpg"
menu.biodiesel.page = "/apps/biodiesel/"
showImpactWidget("land", menu, "loyola_chicago")
showHeroMenu("feature", menu, "loyola_chicago")
</script>
</head>
<body>
<style>
.bgimg {
min-height: 600px;
}
#hero-rect {
background-color: rgba(255, 255, 255, 1);
}
#hero-rect:hover {
background-color: rgba(255, 255, 255, 1);
}
.bgimg {
background-image: url(https://model.earth/us-states/images/backgrounds/1280x720/landscape/south-dakota.jpg);
}
</style>
<div id="hero_holder">
<div id="hero-landscape-image" class="bgimg displayOnload" style="display:none; background-position: 0 54px;">
<div id="hero-content">
<div id="hero-mini" style="max-width:140px;padding-bottom:12px">
<b style="margin-bottom:8px; display:block">Impact (mini)</b>
<div id="impact-widget-vertical">
<div id="insertImpactIcons"></div>
</div>
</div>
<div id="hero-rect" class="displayOnload" style="display: none;">
<h1 style="padding:0px;margin:0px;margin-bottom:15px;font-size:24px">Community Pages</h1>
<div id="relocatedStateMenu"></div><br>
<a href="#mapview=counties" onclick="$('#filterClickLocation').click();return false;">Select counties and regions</a> to view local industry impacts<!--a href="#impact"></a-->
<br><br>
<div id="readmeDiv"></div>
<b>Create a Community Page</b> - <a href="../localsite/start/">Setup your local webroot and fork repos</a>, then copy or edit a folder in the apps repo. Deploy your updates using GitHub Desktop. More about creating a <a href="../../community/challenge/how/">winning entry</a>.<br><br>
<a href="../community/challenge/">About Web Challenge</a> | <a href="../community/tools/">Lifecycle Tools Overview</a>
<div id="parsedOutput"></div>
</div>
</div>
</div>
</div>
<!--
<div style="font-size:24px">
https://www.purpleair.com/pa.widget.js?key=WQDIG1WBX2S88N2Q&module=AQI&conversion=C0&average=10&layer=standard&container=PurpleAirWidget_57441_module_AQI_conversion_C0_average_10_layer_standard
</div>
<div id='PurpleAirWidget_57441_module_AQI_conversion_C0_average_10_layer_standard'>Loading PurpleAir Widget...</div>
<script src='https://www.purpleair.com/pa.widget.js?key=WQDIG1WBX2S88N2Q&module=AQI&conversion=C0&average=10&layer=standard&container=PurpleAirWidget_57441_module_AQI_conversion_C0_average_10_layer_standard'></script>
-->
</body>
</html>