-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (67 loc) · 4.11 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 class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>COVID-19 tracker for Jersey</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/main.css">
<!-- Primary Meta Tags -->
<meta name="title" content="Jersey COVID-19 data tracker">
<meta name="description" content="Using the data feed provided by the Government of Jersey via Open Data Portal, this site visualises the figures being produced in an easy to read format.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://covid19.org.je">
<meta property="og:title" content="Jersey COVID-19 data tracker">
<meta property="og:description" content="Using the data feed provided by the Government of Jersey via Open Data Portal, this site visualises the figures being produced in an easy to read format.">
<meta property="og:image" content="https://covid19.org.je/images/meta.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://covid19.org.je">
<meta property="twitter:title" content="Jersey COVID-19 data tracker">
<meta property="twitter:description" content="Using the data feed provided by the Government of Jersey via Open Data Portal, this site visualises the figures being produced in an easy to read format.">
<meta property="twitter:image" content="https://covid19.org.je/images/meta.png">
</head>
<body>
<header>
<div class="container">
<div class="twelve column">
<div class="title" style="width:100%; text-align: center;">
<h1>Jersey COVID-19 Tracker</h1>
</div>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class="twelve column" style="text-align:center;">
<h3>This site has now been closed down</h3>
<p>
This page was setup to utilise the data feed that the Government of Jersey was providing on the Covid19 cases, tests and vaccines in the island of Jersey during the 2020 pandemic. This was mainly to both show the data in a better format that originally displayed on gov.je, and be able to show that providing open data in standardised formats can allow others to build on it.
</p>
<p>An occasional problem was caused when the datafeed was updated without warning, usually breaking some things. </p>
<h2>The last update to feed has done this again... But it's not all bad news.</h2>
<p>The update coincided with a large UI update to <a href="https://gov.je/" target="_blank">gov.je</a> as a whole, and now has some very good data visualisation of the Covid-19 data, in ways that are much better than this site offered.</p>
<a href="https://www.gov.je/Health/Coronavirus/Pages/CoronavirusCases.aspx">
<button style="background:#2a313e;color:white;font-size:1.5rem;font-weight: normal; margin-top:20px;">Go to the updated Covid-19 stats page</button>
</a>
<p></p>
<p> Thanks to all those who supported this project during a strange time, and especially to <a href="https://rcwd.dev/" target="_blank">Rob Dudley</a> for his support on the API front.</p>
<p>You will still be able to access the codebase for this project via <a href="https://github.com/bearpig/COVID19_org_je" target="_blank">Github</a>.</p>
<p>#GetVaccinated</p>
</div>
</div>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-164542381-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-164542381-1');
</script>
</body>
</html>