-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
113 lines (100 loc) · 6.13 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
107
108
109
110
111
112
113
<html>
<head>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta charset="utf-8">
<meta property="og:url" content="http://https://erasta.github.io/CovidDataIsrael" />
<meta property="og:type" content="website" />
<meta property="og:title" content="נגיף הקורונה בישראל" />
<meta property="og:description"
content="נתוני מגיפת הקורונה בישראל מפורטים ומונגשים, מתעדכנים אוטומטית ממשרד הבריאות דרך הממשק הרשמי" />
<meta name="description"
content="נתוני מגיפת הקורונה בישראל מפורטים ומונגשים, מתעדכנים אוטומטית ממשרד הבריאות דרך הממשק הרשמי" />
<meta property="og:image" content="https://erasta.github.io/CovidDataIsrael/images/ScreenShotMulti.jpg" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<title>נגיף הקורונה בישראל</title>
<style>
table {
border-collapse: collapse;
border: 2px black solid;
font: 12px sans-serif;
}
td,
th {
border: 1px black solid;
padding: 5px;
}
</style>
<script>if (window.location.hostname === 'localhost') window['ga-disable-UA-123138137-9'] = true;</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123138137-9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-123138137-9');
</script>
<script src="https://d3js.org/d3.v3.min.js" crossorigin></script>
<script src="https://d3js.org/d3-color.v1.min.js" crossorigin></script>
<script src="https://d3js.org/d3-interpolate.v1.min.js" crossorigin></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js" crossorigin></script>
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/@material-ui/core@latest/umd/material-ui.production.min.js" crossorigin></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script> <!-- Don't use this in production: -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<script>process = { env: { NODE_ENV: "production" } }</script>
<link rel="stylesheet" href="https://unpkg.com/chart.js@2.9.3/dist/Chart.min.css" />
<script src='https://unpkg.com/moment@2.29.0/min/moment.min.js'></script>
<script src='https://unpkg.com/chart.js@2.9.3/dist/Chart.min.js'></script>
<script src='https://unpkg.com/react-chartjs-2@2.10.0/dist/react-chartjs-2.js'></script>
<script src='https://unpkg.com/clsx@1.1.1/dist/clsx.min.js'></script>
<script src='https://unpkg.com/react-router-dom@5.2.0/umd/react-router-dom.min.js'></script>
<script src='https://unpkg.com/chartjs-plugin-datalabels@0.7.0/dist/chartjs-plugin-datalabels.min.js'></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<script src="https://unpkg.com/react-leaflet@2.8.0/dist/react-leaflet.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@2/dist/email.min.js"></script>
<link rel="icon" href="images/Aha-Soft-Transport-Bike.ico" />
</head>
<body style="margin: 0;">
<div id="root"></div>
<script type="text/babel" src="js/thirdparty/chartjs-plugin-watermark.js"></script>
<script type="text/babel" src="js/thirdparty/Semicircle.js"></script>
<script type="text/babel" src="js/utils.js"></script>
<script type="text/babel" src="js/color.js"></script>
<script type="text/babel" src="js/FetchedTable.js"></script>
<script type="text/babel" src="js/SpecificTableCompute.js"></script>
<script type="text/babel" src="js/ReactSemiCircle.js"></script>
<script type="text/babel" src="js/CircularWorkGif.jsx"></script>
<script type="text/babel" src="js/SplitButton.jsx"></script>
<script type="text/babel" src="js/FieldChips.jsx"></script>
<script type="text/babel" src="js/DateRangeSlider.jsx"></script>
<script type="text/babel" src="js/HistorySlider.jsx"></script>
<script type="text/babel" src="js/ChartShow.jsx"></script>
<script type="text/babel" src="js/DataGraph.jsx"></script>
<script type="text/babel" src="js/TableShow.jsx"></script>
<script type="text/babel" src="js/DataShow.jsx"></script>
<script type="text/babel" src="js/DataShowCharts.jsx"></script>
<script type="text/babel" src="js/DataShowComputedDeath.jsx"></script>
<script type="text/babel" src="js/DataShowRaw.jsx"></script>
<script type="text/babel" src="js/MainView.jsx"></script>
<script type="text/babel" src="js/LastUpdate.jsx"></script>
<script type="text/babel" src="js/Footer.jsx"></script>
<script type="text/babel" src="js/ShowAbout.jsx"></script>
<script type="text/babel" src="js/EmailForm.jsx"></script>
<script type="text/babel" src="js/Header.jsx"></script>
<script type="text/babel" src="js/DataMap.jsx"></script>
<script type="text/babel" src="js/SmallWidget.jsx"></script>
<script type="text/babel" src="js/HeaderWidget.jsx"></script>
<script type="text/babel" src="js/App.jsx"></script>
<script type="text/babel" src="js/index.js"></script>
</script>
</body>
</html>