summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2017-06-20 21:58:46 +0100
committerLuke Bratch <luke@bratch.co.uk>2017-06-20 21:58:46 +0100
commitc26eeb7fb74886d0d003c63bb97e8f396cf05ccc (patch)
tree51431f3e325d2cb09901365e72b1c9300b197367
Initial import
-rw-r--r--graphs.php40
l---------graphs.phps1
-rw-r--r--index.php90
l---------index.phps1
-rw-r--r--rain.png6
-rw-r--r--temp.png6
-rw-r--r--test.html683
-rw-r--r--time-index.txt1
-rw-r--r--uv.png6
-rw-r--r--wind.png6
10 files changed, 840 insertions, 0 deletions
diff --git a/graphs.php b/graphs.php
new file mode 100644
index 0000000..981b107
--- /dev/null
+++ b/graphs.php
@@ -0,0 +1,40 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html>
+
+<head>
+
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+
+<title>Jersey Weather - Graphs</title>
+
+</head>
+
+<body>
+
+<?php
+
+echo "<p><a href=\"./\">Forecasts</a> | Graphs</p>\n\n";
+
+echo "<p><em>This page is currently slow - image caching coming soon.</em></p>\n\n";
+
+echo "<h2>Temperature / Rainfall</h2>\n\n";
+
+file_put_contents("temp.png", file_get_contents("http://data.gov.je/JerseyMet/Town/internet.Temperature.png"));
+file_put_contents("rain.png", file_get_contents("http://data.gov.je/JerseyMet/Town/internet.Rainfall.png"));
+
+echo "<p><img src=\"temp.png\" alt=\"Temperature\"> <img src=\"rain.png\" alt=\"Rainfall\"></p>";
+
+echo "<h2>UV index / Wind</h2>\n\n";
+
+file_put_contents("uv.png", file_get_contents("http://data.gov.je/JerseyMet/Town/internet.UV.png"));
+file_put_contents("wind.png", file_get_contents("http://data.gov.je/JerseyMet/Town/internet.Wind.png"));
+
+echo "<p><img src=\"uv.png\" alt=\"UV index\"> <img src=\"wind.png\" alt=\"Wind\"></p>";
+
+
+?>
+
+</body>
+
+</html>
diff --git a/graphs.phps b/graphs.phps
new file mode 120000
index 0000000..a07634e
--- /dev/null
+++ b/graphs.phps
@@ -0,0 +1 @@
+graphs.php \ No newline at end of file
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..a9f4db2
--- /dev/null
+++ b/index.php
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html>
+
+<head>
+
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+
+<?php
+
+libxml_use_internal_errors(true);
+date_default_timezone_set("UTC");
+
+file_put_contents("time-index.txt", date("U"));
+
+$dom = new DOMDocument;
+$dom->loadHTML(file_get_contents("http://www.gov.je/weather/Pages/Jersey-Forecast.aspx"));
+
+$divs = $dom->getElementsByTagName("div");
+
+$day = 0;
+
+$valid = array();
+$temp = array();
+$misc = array();
+
+foreach ($divs as $div) {
+ if ($day > 2) {
+ break;
+ }
+
+ foreach ($div->attributes as $attr) {
+ if ($attr->nodeValue == "forecastValid") {
+ array_push($valid, $div->nodeValue);
+ $day++;
+ }
+
+ if ($attr->nodeValue == "forecastText" || $attr->nodeValue == "forecastText last") {
+ array_push($misc, $div->nodeValue);
+ }
+
+ if ($attr->nodeValue == "main") {
+ $spans = $div->getElementsByTagName("span");
+ foreach ($spans as $span) {
+ foreach ($span->attributes as $sattr) {
+ if ($sattr->nodeValue == "temp" || $sattr->nodeValue == "currentc") {
+ array_push($temp, $span->nodeValue);
+ }
+ }
+ }
+ }
+ }
+
+}
+
+// Replace newlines with spaces, and strip multiple spaces
+for ($i = 0; $i < count($misc); $i++) {
+ $misc[$i] = preg_replace("/[\r\n]+/", " ", $misc[$i]);
+ $misc[$i] = preg_replace("/\s+/", " ", $misc[$i]);
+}
+
+for ($i = 0; $i < count($temp); $i++) {
+// $temp[$i] = str_replace("°", "&deg;", $temp[$i]);
+}
+
+echo "<title>Max $temp[0], Min $temp[1], Cur $temp[2], $misc[0]</title>\n\n";
+echo "</head>\n\n";
+echo "<body>\n\n";
+
+echo "<p>Forecasts | <a href=\"./graphs.php\">Graphs</a></p>\n\n";
+
+echo "<h2>Today</h2>\n\n";
+echo "<p><em>$valid[0]</em><br><br>\n";
+echo "<strong>Max:</strong> $temp[0], <strong>Min:</strong> $temp[1], <strong>Current</strong>: $temp[2]<br><br>\n";
+echo "<strong>Summary:</strong> $misc[0]<br><br>\n";
+echo "<strong>Visibility:</strong> $misc[1]<br><br>\n";
+echo "<strong>Wind:</strong> $misc[2]<br><br>\n";
+echo "<strong>Sea state:</strong> $misc[3]</p>\n\n";
+
+echo "<h2>Tomorrow</h2>\n\n";
+echo "<p><em>$valid[1]</em><br><br>\n";
+echo "<strong>Max</strong>: $temp[3], <strong>Min</strong>: $temp[4]<br><br>\n";
+echo "<strong>Summary:</strong> $misc[4]<br><br>\n";
+echo "<strong>Wind:</strong> $misc[5]</p>";
+
+?>
+
+</body>
+
+</html>
diff --git a/index.phps b/index.phps
new file mode 120000
index 0000000..0012f7d
--- /dev/null
+++ b/index.phps
@@ -0,0 +1 @@
+index.php \ No newline at end of file
diff --git a/rain.png b/rain.png
new file mode 100644
index 0000000..f086245
--- /dev/null
+++ b/rain.png
@@ -0,0 +1,6 @@
+<svg height="250" width="350" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
+<a xlink:href="http://www.gov.je/weather/">
+ <text x="15" y="15" fill="red">Channel Islands weather images can be found at</text>
+ <text x="15" y="45" fill="red">http://www.gov.je/weather</text>
+</a>
+</svg> \ No newline at end of file
diff --git a/temp.png b/temp.png
new file mode 100644
index 0000000..f086245
--- /dev/null
+++ b/temp.png
@@ -0,0 +1,6 @@
+<svg height="250" width="350" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
+<a xlink:href="http://www.gov.je/weather/">
+ <text x="15" y="15" fill="red">Channel Islands weather images can be found at</text>
+ <text x="15" y="45" fill="red">http://www.gov.je/weather</text>
+</a>
+</svg> \ No newline at end of file
diff --git a/test.html b/test.html
new file mode 100644
index 0000000..bc85c71
--- /dev/null
+++ b/test.html
@@ -0,0 +1,683 @@
+
+
+
+<!DOCTYPE html >
+<html lang="en">
+<head><meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta http-equiv="Content-type" content="text/html; charset=utf-8" /><meta property="og:image" content="http://www.gov.je/Asset%20library/GovJeLogo.png" /><meta property="og:image:type" content="image/png" /><meta property="og:image:width" content="1200" /><meta property="og:image:height" content="630" /><link rel="shortcut icon" href="/_controltemplates/15/C5.Gov2010.Resources/images/GovJE.ico" /><link rel="apple-touch-icon-precomposed" sizes="144x144" href="/_controltemplates/15/C5.Gov2010.Resources/images/ios/Icon-72-2x.png" /><link rel="apple-touch-icon-precomposed" sizes="114x114" href="/_controltemplates/15/C5.Gov2010.Resources/images/ios/Icon-2x.png" /><link rel="apple-touch-icon-precomposed" sizes="72x72" href="/_controltemplates/15/C5.Gov2010.Resources/images/ios/Icon-72.png" /><link rel="apple-touch-icon-precomposed" href="/_controltemplates/15/C5.Gov2010.Resources/images/ios/Icon.png" /><title>
+
+ Jersey weather forecast
+
+
+</title>
+
+
+
+ <script src="//use.typekit.net/npl5qjc.js"></script>
+ <script>try { Typekit.load(); } catch (e) { }</script>
+
+ <link href="/_controltemplates/15/C5.GovJEResponsive/CSS/bootstrap.min.css" rel="stylesheet" /><link rel="stylesheet" type="text/css" href="//wsstatic.govmetric.com/css/client/gm_sidebar_cnr.css" /><link href="/_controltemplates/15/C5.GovJEResponsive/CSS/govjetype.min.css?20150129" rel="stylesheet" />
+
+ <script src="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
+
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
+ <script>window.jQuery || document.write('<script src="/_controltemplates/15/C5.GovJEResponsive/Scripts/jquery-1.10.2.js"><\/script>')</script>
+
+
+
+
+
+
+ <link rel="stylesheet" type="text/css" href="/_controltemplates/15/C5.MetOfficeResponsive/css/forecast.css?build=20150128" />
+ <script src="/_controltemplates/15/C5.MetOffice2010.Resources/Script/Forecast.js?build=20141022" type="text/javascript"></script>
+
+ <link rel="canonical" href="http://www.gov.je:80/weather/Pages/Jersey-Forecast.aspx" />
+
+
+ <script>
+ // Run on window load in case images or other scripts affect element widths
+ $(window).on('load', function () {
+ // Check all tables. You may need to be more restrictive.
+ $('table').each(function () {
+ var element = $(this);
+ // Create the wrapper element
+ var scrollWrapper = $('<div />', {
+ 'class': 'scrollable',
+ 'html': '<div />' // The inner div is needed for styling
+ }).insertBefore(element);
+ // Store a reference to the wrapper element
+ element.data('scrollWrapper', scrollWrapper);
+ // Move the scrollable element inside the wrapper element
+ element.appendTo(scrollWrapper.find('div'));
+ // Check if the element is wider than its parent and thus needs to be scrollable
+ if (element.outerWidth() > element.parent().outerWidth()) {
+ element.data('scrollWrapper').addClass('has-scroll');
+ }
+ // When the viewport size is changed, check again if the element needs to be scrollable
+ $(window).on('resize orientationchange', function () {
+ if (element.outerWidth() > element.parent().outerWidth()) {
+ element.data('scrollWrapper').addClass('has-scroll');
+ } else {
+ element.data('scrollWrapper').removeClass('has-scroll');
+ }
+ });
+ });
+ });
+ </script>
+ <!--[if lt IE 8]> <style>
+ .browser-warning {
+ display: block;
+ }
+ </style>
+ <![endif]-->
+
+</head>
+<body>
+
+ <div id="skiptocontent">
+ <a href="#startcontent" accesskey="s">Skip to main content</a>
+ <a href="/Pages/accessibility.aspx">Skip to accessibility</a>
+
+ </div>
+
+ <div class="browser-warning">
+ This website is not compatible with your web browser. You should <a href="https://www.google.com/chrome/browser/desktop/index.html">install a newer browser</a>. If you live in Jersey and need help upgrading call the States of Jersey web team on 440099.
+ </div>
+
+ <header>
+ <div class="container">
+ <div class="row">
+ <div class="col-md-8 col-sm-7">
+ <a href="/">
+ <img alt="" src="/_controltemplates/15/C5.GovJEResponsive/images/Leoaprds-white-V1.svg" />gov.je</a>
+ <p class="hidden-xs info">Information and public services for the Island of Jersey</p>
+ <p class="visible-md visible-lg">L'&#238;nform&#226;tion et les s&#232;rvices publyis pouor I'&#206;le d&#233; J&#232;rri</p>
+
+ </div>
+ <div class="col-md-4 col-sm-5">
+
+ <ul class="right hidden-xs">
+ <li><a href="/Pages/contacts.aspx?filterBy=a">Contacts</a></li>
+ <li><a href="/Pages/TranslateSite.aspx">Translate</a></li>
+ <li><a href="https://www.mygov.je/Pages/default.aspx">Login</a></li>
+ </ul>
+ <ul class="right visible-xs">
+ <li>
+ <a href="https://www.mygov.je/Pages/default.aspx">Login </a>
+ </li>
+ </ul>
+ </div>
+ </div>
+
+ </div>
+ </header>
+
+
+
+<section id="Search">
+ <div class="container visible-md visible-lg visible-sm">
+ <div class="row">
+ <form id="searchform" action="/pages/search.aspx" method="get" >
+
+ <div class="col-sm-7" style="padding-right: 0;">
+ <label for="query" class="search right">Search gov.je</label>
+ </div>
+ <div class="col-sm-5">
+
+ <div class="input-group">
+ <input accesskey="4" type="text" id="query" name="query" class="form-control" />
+ <span class="input-group-btn">
+ <button class="btn btn-default" type="submit">Search</button>
+ </span>
+ </div>
+
+ </div>
+ </form>
+ </div>
+ </div>
+ <div class="container visible-xs">
+ <div class="row">
+ <div class="col-sm-12">
+ <form id="searchMobile" class="site-search" action="/pages/search.aspx" method="get">
+
+ <div class="input-group">
+ <label for="queryMobile" class="accessibility">Search gov.je</label>
+ <input type="text" id="queryMobile" name="query" class="form-control" />
+ <span class="input-group-btn">
+ <button class="btn btn-default" type="submit">Search</button>
+ </span>
+ </div>
+ </form>
+
+ </div>
+ </div>
+ </div>
+</section>
+<nav class="breadcrumbs">
+ <div class="container">
+ <div class="row">
+ <div class="col-md-12">
+ <ul><li><a href='/'>Home</a></li><li><a href='/Weather'>Weather</a></li></ul>
+
+ </div>
+ </div>
+ </div>
+</nav>
+
+
+
+
+ <form method="post" action="Jersey-Forecast.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm">
+<div class="aspNetHidden">
+<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
+<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
+<input type="hidden" name="__REQUESTDIGEST" id="__REQUESTDIGEST" value="0xFE0BB98F3209ED4401F3DFD48050E3B9E175453D2F9C07C66D54C262D88EF95FB2C8EB0981E8BEBD727443137C0AD37C666383820F725465FBE5AB8413008231,05 Feb 2015 15:35:27 -0000" />
+<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTM0MjUxNTMwNA9kFgJmD2QWBAIBD2QWAgIWD2QWAgIDD2QWAmYPZBYCZg88KwAGAGQCBQ9kFgICAQ9kFgICAQ9kFgICAw9kFgZmDxYCHgRUZXh0BQ5CZWF1Zm9ydCBmb3JjZWQCAQ8WAh8ABQnCsENlbHNpdXNkAgMPFgIeE1ByZXZpb3VzQ29udHJvbE1vZGULKYgBTWljcm9zb2Z0LlNoYXJlUG9pbnQuV2ViQ29udHJvbHMuU1BDb250cm9sTW9kZSwgTWljcm9zb2Z0LlNoYXJlUG9pbnQsIFZlcnNpb249MTUuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49NzFlOWJjZTExMWU5NDI5YwFkZIA1TGZIBhCooCV6Z/+OxMwUMEXmWxCJ22b8pjiQfNey" />
+</div>
+
+<script type="text/javascript">
+//<![CDATA[
+var theForm = document.forms['aspnetForm'];
+if (!theForm) {
+ theForm = document.aspnetForm;
+}
+function __doPostBack(eventTarget, eventArgument) {
+ if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
+ theForm.__EVENTTARGET.value = eventTarget;
+ theForm.__EVENTARGUMENT.value = eventArgument;
+ theForm.submit();
+ }
+}
+//]]>
+</script>
+
+
+
+<script type="text/javascript">
+//<![CDATA[
+var MSOWebPartPageFormName = 'aspnetForm';
+var g_presenceEnabled = true;
+var g_wsaEnabled = false;
+var g_wsaQoSEnabled = false;
+var g_wsaQoSDataPoints = [];
+var g_wsaLCID = 1033;
+var g_wsaListTemplateId = 850;
+var g_wsaSiteTemplateId = 'BLANKINTERNET#0';
+var _fV4UI=true;var _spPageContextInfo = {webServerRelativeUrl: "\u002fweather", webAbsoluteUrl: "http:\u002f\u002fwww.gov.je\u002fweather", siteAbsoluteUrl: "http:\u002f\u002fwww.gov.je\u002fweather", serverRequestPath: "\u002fweather\u002fPages\u002fJersey-Forecast.aspx", layoutsUrl: "_layouts\u002f15", webTitle: "Jersey Met Office", webTemplate: "53", tenantAppVersion: "0", isAppWeb: false, webLogoUrl: "_layouts\u002f15\u002fimages\u002fsiteicon.png", webLanguage: 1033, currentLanguage: 1033, currentUICultureName: "en-US", currentCultureName: "en-GB", clientServerTimeDelta: new Date("2015-02-05T15:35:27.8616053Z") - new Date(), siteClientTag: "2801$$15.0.4649.1000", crossDomainPhotosEnabled:false, webUIVersion:15, webPermMasks:{High:16,Low:196673},pageListId:"{99549443-b0f2-4f20-9ec4-9edd45afab16}",pageItemId:2, pagePersonalizationScope:1, alertsEnabled:true, siteServerRelativeUrl: "\u002fweather", allowSilverlightPrompt:'True'};//]]>
+</script>
+<script type="text/javascript" src="/_layouts/15/init.js?rev=rQHvYUfURJXLBpgKnm0dcA%3D%3D"></script>
+<script type="text/javascript">
+//<![CDATA[
+function WebForm_OnSubmit() {
+UpdateFormDigest('\u002fweather', 1440000);
+return true;
+}
+//]]>
+</script>
+
+<div class="aspNetHidden">
+
+ <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="D6220EF7" />
+</div>
+
+ <div class="container weather">
+ <div id="DeltaPlaceHolderMain">
+
+
+
+ <section id="forecast" class="forcastcontent">
+ <div class="row">
+
+
+ <article class="pagecontent">
+ <a id="startcontent" class="accessibility"></a>
+
+ <!--Start content-->
+
+
+
+
+
+<script type="text/javascript">
+ $(document).ready(function () {
+ var url = document.URL;
+ var text =$("#speed").text();
+ var tempm = $("#temp").text();
+
+ $("input[type=radio]").each(function () {
+ //var currInputName = $(this).attr('name');
+
+ var label = $(this).parent().find('label').text();
+
+ if (text == label || tempm == label) {
+ $(this).prop("checked", true);
+
+ }
+ });
+
+ $("input[type=radio]").change(function () {
+ var currInputName = $(this).attr('name');
+ window.location.replace(replaceUrlParam(url, currInputName,$(this).val()));
+ });
+
+ });
+
+ function replaceUrlParam(url, paramName, paramValue) {
+ var pattern = new RegExp('(' + paramName + '=).*?(&|$)')
+ var newUrl = url.replace(pattern, '$1' + paramValue + '$2');
+ if (newUrl == url) {
+ newUrl = newUrl + (newUrl.indexOf('?') > 0 ? '&' : '?') + paramName + '=' + paramValue
+ }
+ return newUrl
+ }
+ function getParameterByName(name) {
+ name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
+ var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
+ results = regex.exec(location.search);
+ return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
+ }
+</script>
+<div class="col-md-12"><h1 class="title">Jersey weather forecast <span class='issuedate'>issued 5 Feb 2015 15:15</span></h1></div>
+
+
+
+
+
+
+ <div class="col-md-8">
+ <div id="FivedayForecastWrapper"><a id="TodaysForecast" class="forecastTag active" href="#" onclick="return false;"><span class="content"><span class="ForecastTitle">Today</span><img class="weathericon" alt="Sleet showers" title="Sleet showers" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/m.svg" /><span class="ForecastTemp"><span class='pnlmaxtemp'>6°C</span><span class='pnlmaxtemp'>0°C</span></span><span class="windwrapper"><span class="wind" style="width:100%"><img alt="20 mph Northeast" title="20 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span title="20 mph Northeast">F5</span></span></span></span></a><a class="FivedayForecastTomorrow forecastTag" href="#" onclick="return false;"><span class="content"><span class="ForecastTitle">Friday</span><img class="weathericon" alt="Fair with sunny periods" title="Fair with sunny periods" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/d.svg" /><span class="ForecastTemp"><span class='pnlmaxtemp'>5°C</span><span class='pnlmaxtemp'>1°C</span></span><span class="windwrapper"><span class="wind" style="width:100%"><img alt="26 mph Northeast" title="26 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span title="26 mph Northeast">F6</span></span></span></span></a><a id="FivedayForecastDay3" class="forecastTag" href="#" onclick="return false;"><span class="content"><span class="ForecastTitle">Saturday</span><img class="weathericon" alt="Fair with sunny periods" title="Fair with sunny periods" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/d.svg" /><span class="ForecastTemp">6°C</span><span class="wind"><img alt="20 mph Northeast" title="20 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span title="20 mph Northeast">F5</span></span></span></a><a id="FivedayForecastDay4" class="forecastTag" href="#" onclick="return false;"><span class="content"><span class="ForecastTitle">Sunday</span><img class="weathericon" alt="Fair with sunny periods" title="Fair with sunny periods" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/d.svg" /><span class="ForecastTemp">6°C</span><span class="wind"><img alt="15 mph Northeast" title="15 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span title="15 mph Northeast">F4</span></span></span></a><a id="FivedayForecastDay5" class="forecastTag" href="#" onclick="return false;"><span class="content"><span class="ForecastTitle">Monday</span><img class="weathericon" alt="Cloudy" title="Cloudy" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/f.svg" /><span class="ForecastTemp">6°C</span><span class="wind"><img alt="15 mph North" title="15 mph North" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/N.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/N.png'" /><span title="15 mph North">F4</span></span></span></a><a id="FivedayForecastDay6" class="forecastTag" href="#" onclick="return false;"><span class="content"><span class="ForecastTitle">Tuesday</span><img class="weathericon" alt="Cloudy" title="Cloudy" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/f.svg" /><span class="ForecastTemp">5°C</span><span class="wind"><img alt="15 mph East Northeast" title="15 mph East Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/ENE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/ENE.png'" /><span title="15 mph East Northeast">F4</span></span></span></a></div>
+ <div id="forecastWrapper"><div class="mobileheader"><div class="ForecastTitle">Today</div><div class="pnlweathericon"><img class="weathericon" alt="Sleet showers" title="Sleet showers" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/m.svg" /></div><div class="ForecastTemp">6°C</div><div class="wind"><img alt="20 mph Northeast" title="20 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span title="20 mph Northeast">
+ F5</span></div><div class="toggleicon"> </div></div><div id="forecastDetailWrapper" class="forecastDetail"><div class="pnlweathericon"><img class="weathericon" alt="Sleet showers" title="Sleet showers" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/m.svg" /></div><div class="pnlforcast"><div class="main"><div class="forecastValid">Forecast valid from 4 pm today to 6 am tomorrow</div><div class="pnlmaxtemp"><span class='Max'>Max</span><span class='temp'>6°C</span><span class='Max'>Min</span><span class='temp'>0°C</span></div><span class='current'>Current<span class='currentc'>5.3°C</span></span></div><div class="forecastIcon pnluv"><div class="forecastText">Fair or cloudy with scattered sleet or snow
+showers. Perhaps some icy surfaces.<div>
+ UV Index: 1</div></div></div></div><div class="forecastRow"><div class="forecastIcon"><img src="/_controltemplates/15/C5.MetOfficeResponsive/images/visibility.svg" class="detailIcon" alt="Visibility" /></div><div class="forecastText">Good, occasionally moderate to poor in
+showers.</div></div><div class="forecastRow"><div class="forecastIcon"><div class="wind"><img alt="20 mph Northeast" title="20 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span class="detail" title="20 mph Northeast">
+ F5</span></div></div><div class="forecastText">Northeast moderate F4 to fresh F5, increasing
+fresh F5 to strong F6 during the afternoon, occasionally
+strong F7 and gusty near showers.</div></div><div class="forecastRow"><div class="forecastIcon last"><img src="/_controltemplates/15/C5.MetOfficeResponsive/images/sea.svg" class="detailIcon" alt="Sea state" /></div><div class="forecastText last">Moderate to rather
+rough.</div></div></div><div class="mobileheader"><div class="ForecastTitle">Friday</div><div class="pnlweathericon"><img class="weathericon" alt="Fair with sunny periods" title="Fair with sunny periods" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/d.svg" /></div><div class="ForecastTemp">5°C</div><div class="wind"><img alt="26 mph Northeast" title="26 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span title="26 mph Northeast">F6</span></div><div class="toggleicon"> </div></div><div id="forecastDetailTomorrowWrapper" class="forecastDetail"><div class="pnlweathericon"><img class="weathericon" alt="Fair with sunny periods" title="Fair with sunny periods" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/d.svg" /></div><div class="pnlforcast"><div class="main"><div class="forecastValid">Forecast valid from 6 am Friday to 6 am Saturday</div><div class="pnlmaxtemp"><span class="Max">Max</span><span class="temp">5°C</span><span class="Max">Min</span><span class="temp">1°C</span></div></div><div class="forecastIcon pnluv"><div class="forecastText">Fair or sunny periods. Isolated showers at
+first.<div>UV Index: 1</div></div></div></div><div class="forecastRow"><div class="forecastIcon"><div class="wind"><img alt="26 mph Northeast" title="26 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span class="detail" title="26 mph Northeast">
+ F6</span></div></div><div class="forecastText">Northeast strong F6 to 7 with gusts to
+50mph, decreasing fresh F5 to strong F6
+overnight.</div></div></div><div class="mobileheader"><div class="ForecastTitle">Saturday</div><div class="pnlweathericon"><img class="weathericon" alt="Fair with sunny periods" title="Fair with sunny periods" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/d.svg" /></div><div class="ForecastTemp">6°C</div><div class="wind"><img alt="20 mph Northeast" title="20 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span title="20 mph Northeast">F5</span></div><div class="toggleicon"> </div></div><div id="forecastDetailDay3Wrapper" class="forecastDetail"><div class="pnlweathericon"><img class="weathericon" alt="Fair with sunny periods" title="Fair with sunny periods" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/d.svg" /></div><div class="pnlforcast"><div class="main"><div class="forecastValid">
+ Forecast valid 6 am to 6 pm Saturday</div><div class="pnlmaxtemp"><span class="Max">Max</span><span class="temp">6°C</span></div></div><div class="forecastIcon pnluv"><div class="forecastText">Fair with sunny periods<div>UV Index: 1</div></div></div></div><div class="forecastRow"><div class="forecastIcon"><div class="wind"><img alt="20 mph Northeast" title="20 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span class="detail" title="20 mph Northeast">
+ F5</span></div></div><div class="forecastText">Northeast F5</div></div></div><div class="mobileheader"><div class="ForecastTitle">Sunday</div><div class="pnlweathericon"><img class="weathericon" alt="Fair with sunny periods" title="Fair with sunny periods" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/d.svg" /></div><div class="ForecastTemp">6°C</div><div class="wind"><img alt="15 mph Northeast" title="15 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span title="15 mph Northeast">F4</span></div><div class="toggleicon"> </div></div><div id="forecastDetailDay4Wrapper" class="forecastDetail"><div class="pnlweathericon"><img class="weathericon" alt="Fair with sunny periods" title="Fair with sunny periods" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/d.svg" /></div><div class="pnlforcast"><div class="main"><div class="forecastValid">
+ Forecast valid 6 am to 6 pm Sunday</div><div class="pnlmaxtemp"><span class="Max">Max</span><span class="temp">6°C</span></div></div><div class="forecastIcon pnluv"><div class="forecastText">Fair with sunny periods<div>UV Index: 1</div></div></div></div><div class="forecastRow"><div class="forecastIcon"><div class="wind"><img alt="15 mph Northeast" title="15 mph Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/NE.png'" /><span class="detail" title="15 mph Northeast">
+ F4</span></div></div><div class="forecastText" title="15 mph Northeast">Northeast F4</div></div></div><div class="mobileheader"><div class="ForecastTitle">Monday</div><div class="pnlweathericon"><img class="weathericon" alt="Cloudy" title="Cloudy" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/f.svg" /></div><div class="ForecastTemp">6°C</div><div class="wind"><img alt="15 mph North" title="15 mph North" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/N.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/N.png'" /><span title="15 mph North">F4</span></div><div class="toggleicon"> </div></div><div id="forecastDetailDay5Wrapper" class="forecastDetail"><div class="pnlweathericon"><img class="weathericon" alt="Cloudy" title="Cloudy" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/f.svg" /></div><div class="pnlforcast"><div class="main"><div class="forecastValid">
+ Forecast valid 6 am to 6 pm Monday</div><div class="pnlmaxtemp"><span class="Max">Max</span><span class="temp">6°C</span></div></div><div class="forecastIcon pnluv"><div class="forecastText">Cloudy<div>UV Index: 1</div></div></div></div><div class="forecastRow"><div class="forecastIcon"><div class="wind"><img alt="15 mph North" title="15 mph North" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/N.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/N.png'" /><span class="detail" title="15 mph North">
+ F4</span></div></div><div class="forecastText">North F4</div></div></div><div class="mobileheader"><div class="ForecastTitle">Tuesday</div><div class="pnlweathericon"><img class="weathericon" alt="Cloudy" title="Cloudy" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/f.svg" /></div><div class="ForecastTemp">5°C</div><div class="wind"><img alt="15 mph East Northeast" title="15 mph East Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/ENE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/ENE.png'" /><span title="15 mph East Northeast">F4</span></div><div class="toggleicon"> </div></div><div id="forecastDetailDay6Wrapper" class="forecastDetail"><div class="pnlweathericon"><img class="weathericon" alt="Cloudy" title="Cloudy" src="/_controltemplates/15/C5.MetOfficeResponsive/images/icons/f.svg" /></div><div class="pnlforcast"><div class="main"><div class="forecastValid">
+ Forecast valid 6 am to 6 pm Tuesday</div><div class="pnlmaxtemp"><span class="Max">Max</span><span class="temp">5°C</span></div></div><div class="forecastIcon pnluv"><div class="forecastText">Cloudy<div>UV Index: 1</div></div></div></div><div class="forecastRow"><div class="forecastIcon"><div class="wind"><img alt="15 mph East Northeast" title="15 mph East Northeast" class="winddirection" src="/_controltemplates/15/C5.MetOfficeResponsive/images/wind/ENE.svg" onerror="this.src='/_controltemplates/15/C5.MetOfficeResponsive/images/wind/ENE.png'" /><span class="detail" title="15 mph East Northeast">
+ F4</span></div></div><div class="forecastText">East Northeast F4</div></div></div></div><div id='forecastDetailButtons'><a class='forecastlink' href='/Weather/Pages/Guernsey-forecast.aspx'>View weather for Guernsey</a></div>
+
+<a class="setting" href="#" onclick='return false;'><span class="icon"></span><h2>Settings</h2><span class="mode">Wind speed <span id="speed">Beaufort force</span>Temperature <span id="temp">°Celsius</span></span></a>
+<div id="settingPanel">
+ <div class="col-md-4 form">
+ <fieldset>
+ <legend>Wind speed</legend>
+ <ul>
+ <li>
+ <input checked type="radio" value="beaufort" id="beaufort" name="speed"/><label for="beaufort">Beaufort force</label>
+ </li>
+ <li>
+ <input type="radio" value="mile" id="mph" name="speed"/><label for="mph">Miles per hour</label>
+ </li>
+ <li>
+ <input type="radio" value="km" id="km" name="speed"/><label for="km">Kilometres per hour</label>
+ </li>
+ <li>
+ <input type="radio" value="knots" id="knots" name="speed"/><label for="knots">Knots</label>
+ </li>
+
+ </ul>
+ </fieldset>
+ </div>
+ <div class="col-md-4 form">
+ <fieldset>
+ <legend>Temperature</legend>
+ <ul>
+ <li>
+ <input checked type="radio" value="celsius" id="celsius" name="temp"/><label for="celsius">°Celsius</label>
+ </li>
+ <li>
+ <input type="radio" value="fahrenheit" id="fahrenheit" name="temp"/><label for="fahrenheit">°Fahrenheit</label>
+ </li>
+ </ul>
+ </fieldset>
+ </div>
+
+ </div>
+
+
+<section id="PageNaivation" class="hidden-xs">
+ <div class="row" style="margin-bottom: 30px;">
+
+ <div class="col-md-4 col-sm-4">
+ <div class="navbox">
+
+ <div class="navimage">
+ <a href='/Weather/Pages/Tides.aspx'><img class="img-responsive" src="/_controltemplates/15/C5.MetOffice2010.Resources/images/forecast/Tide.jpg" alt="Tide times"/></a>
+
+ </div>
+ </div>
+
+ <div class="PageNaivationTop">
+
+ <a href='/Weather/Pages/Tides.aspx'>Tide times - St Helier</a>
+ </div>
+ </div>
+
+
+ <div class="col-md-4 col-sm-4">
+ <div class="navbox">
+
+ <div class="navimageRadar">
+ <a href='/Weather/Pages/Radar.aspx'><img class="img-responsive" src="//data.gov.je/JerseyMet/RadarImages/Radar_new10.jpg" alt="Weather radar" /></a>
+ </div>
+ </div>
+
+ <div class="PageNaivationTop">
+ <a href='/Weather/Pages/Radar.aspx'>Weather radar</a>
+ </div>
+ </div>
+
+ <div class="col-md-4 col-sm-4">
+ <div class="navbox">
+
+ <div class="navimage">
+ <a href='/Weather/AviationForecast/Pages/Aviation.aspx'><img class="img-responsive" src="/_controltemplates/15/C5.MetOffice2010.Resources/images/forecast/Aviation.jpg" alt="Aviation forecast"/></a>
+ </div>
+ </div>
+
+ <div class="PageNaivationTop">
+ <a href='/Weather/AviationForecast/Pages/Aviation.aspx'>Aviation forecast</a>
+ </div>
+</div>
+ </div>
+ <div class="row">
+
+ <div class="col-md-4 col-sm-4">
+ <div class="navbox">
+
+ <div class="navimage">
+ <a href='/Weather/Pages/Shipping.aspx'><img class="img-responsive" src="/_controltemplates/15/C5.MetOffice2010.Resources/images/forecast/Shipping.jpg" alt="Shipping forecast"/></a>
+
+</div> </div>
+ <div class="PageNaivationTop">
+ <a href='/Weather/Pages/Shipping.aspx'>Shipping forecast</a>
+</div>
+</div>
+
+
+
+ <div class="col-md-4 col-sm-4">
+ <div class="navbox">
+
+ <div class="navimageSat">
+ <a href='/Weather/Pages/Satellite.aspx'><img class="img-responsive" src="//data.gov.je/JerseyMet/satelliteimages/satellite_new10.jpg" alt="Latest satellite image" /></a>
+ </div>
+ </div>
+
+ <div class="PageNaivationTop">
+ <a href='/Weather/Pages/Satellite.aspx'>Latest satellite image</a>
+ </div>
+ </div>
+
+
+
+ <div class="col-md-4 col-sm-4">
+ <div class="navbox">
+
+ <div class="navimageWebcam">
+ <a href='/Weather/Pages/webcam.aspx'><img class="img-responsive" src="//data.gov.je/JerseyMet/Webcam/Airport_000_new10.jpg" alt="Runway webcam" /></a>
+ </div>
+ </div>
+
+ <div class="PageNaivationTop">
+ <a href='/Weather/Pages/webcam.aspx'>Runway webcam – Jersey</a>
+ </div>
+</div>
+
+</div>
+ </section>
+
+<section id="PageNaivationMobile" class="visible-xs">
+ <ul>
+ <li><a href='/Weather/Pages/Tides.aspx'>Tide times - St Helier</a></li>
+ <li><a href='/Weather/Pages/Radar.aspx'>Weather radar</a></li>
+ <li><a href='/Weather/AviationForecast/Pages/Aviation.aspx'>Aviation forecast</a></li>
+ <li><a href='/Weather/Pages/Shipping.aspx'>Shipping forecast</a></li>
+ <li><a href='/Weather/Pages/Satellite.aspx'>Latest satellite image</a></li>
+ <li><a href='/Weather/Pages/webcam.aspx'>Runway webcam – Jersey</a></li>
+
+ </ul>
+</section>
+
+ <div class="col-md-12"><div class="forecastcontent">
+<div id="ctl00_PlaceHolderMain_Forecast1_RichHtmlField1_label" style='display:none'>Page Content</div><div id="ctl00_PlaceHolderMain_Forecast1_RichHtmlField1__ControlWrapper_RichHtmlField" class="ms-rtestate-field" style="display:inline" aria-labelledby="ctl00_PlaceHolderMain_Forecast1_RichHtmlField1_label"><p>​​If you prefer a text-only forecast,
+ <a href="http&#58;//m.gov.je/">m.gov.je​</a> has a layout ideal for ​your smartphone.​</p></div>
+ </div>
+</div>
+</div>
+ <!-- Sidebar -->
+ <aside id="sideBar" class="col-md-4">
+
+<!--[if !(IE 8)]><!-->
+
+<script>!function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], p = /^http:/.test(d.location) ? 'http' : 'https'; if (!d.getElementById(id)) { js = d.createElement(s); js.id = id; js.src = p + '://platform.twitter.com/widgets.js'; fjs.parentNode.insertBefore(js, fjs); } }(document, 'script', 'twitter-wjs');</script>
+
+<script src="//platform.linkedin.com/in.js" type="text/javascript"></script>
+
+<div id="fb-root"></div>
+<script>(function (d, s, id) {
+ var js, fjs = d.getElementsByTagName(s)[0];
+ if (d.getElementById(id)) return;
+ js = d.createElement(s); js.id = id;
+ js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.0";
+ fjs.parentNode.insertBefore(js, fjs);
+}(document, 'script', 'facebook-jssdk'));</script>
+
+<div id="social">
+ <div class="firstbutton">
+ <div class="fb-share-button" data-href="http://www.gov.je/weather/Pages/Jersey-Forecast.aspx" data-layout="button"></div>
+ </div>
+ <div class="button"><a href="https://twitter.com/share" class="twitter-share-button" data-count="none">Tweet</a></div>
+ <div class="button">
+ <script type="IN/Share" data-url="http://www.gov.je/weather/Pages/Jersey-Forecast.aspx"></script>
+ </div>
+ <div class="button">
+ <a href="mailto:?Body=http://www.gov.je/weather/Pages/Jersey-Forecast.aspx"><img src="/_controltemplates/15/C5.GovJEResponsive/images/share.png" alt="Email" /></a>
+ </div>
+
+</div>
+<!--<![endif]-->
+
+
+
+
+<div id="navigator">
+ <div class="sidePanel"><h4>In this section</h4><ul><li><a href='/Weather/Pages/Guernsey-forecast.aspx'>Guernsey forecast</a></li><li><a href='/Weather/Pages/About-Jersey-Met.aspx' >About Jersey Met</a></li><li><a href='/Weather/AviationForecast/Pages/Aviation.aspx' >Aviation forecast</a></li><li><a href='/Weather/Pages/Radar.aspx' >CI weather radar</a></li><li><a href='/Weather/Pages/CoastalReports.aspx' >Coastal reports</a></li><li><a href='/Weather/Pages/Daily-Weather-Data.aspx' >Daily weather data</a></li><li><a href='/Weather/Pages/Disclaimer.aspx' >Disclaimer</a></li><li><a href='/Weather/Pages/Earthquakes.aspx' >Earthquakes</a></li><li><a href='/Weather/Pages/ForecastTimes.aspx' >Forecast times</a></li><li><a href='/Weather/Pages/Jersey-Climate.aspx' >Jersey climate</a></li><li><a href='/Weather/Pages/Services.aspx' >Jersey Met premium services</a></li><li><a href='/Weather/Pages/Live-Weather-data.aspx' >Live weather observations</a></li><li><a href='/Weather/Pages/webcam.aspx' >Runway webcam – Jersey Airport</a></li><li><a href='/Weather/Pages/Satellite.aspx' >Satellite image </a></li><li><a href='/Weather/Pages/Shipping.aspx' >Shipping forecast</a></li><li><a href='/Weather/Pages/Tides.aspx' >Tide times - St Helier</a></li><li><a href='/Weather/Pages/uvindex.aspx' >UV Index</a></li></ul></div>
+
+
+ <div class="sidePanel hidden-xs"><div style='width:100%; margin-top:10px; margin-bottom:10px;'><img alt='Premium services' src='/SiteCollectionImages/JerseyMetLogo.png' /></div><h4>Premium services</h4><p>Talk to a forecaster on<br />T&nbsp;&nbsp;&nbsp;<a href="tel:+4490580777774">0905 807 7777</a><br />Calls charged at £1.50 per minute</p><p><a href='/Weather/Pages/Services.aspx'>View all phone, fax and email services</a></p></div>
+
+
+
+
+ <div class='sidePanel hidden-xs'><h4>Related links</h4><ul><li><a target="_blank" title="Follow Jersey Met on Twitter opens in new window" href="https://twitter.com/Jersey_Met">Jersey Met on Twitter</a></li><li><a target="_blank" title="Follow Jersey Met warnings on Twitter opens in new window" href="https://twitter.com/Jersey_MetCI">CI weather warnings on Twitter</a></li><li><a target="_blank" title="Jersey Met on Flickr opens in new window" href="http://www.flickr.com/photos/jerseymet/">Jersey Met on Flickr</a></li></ul></div>
+</div>
+
+
+
+ </aside>
+
+
+
+
+
+<!--end content-->
+
+
+
+ </article>
+
+
+ <!-- End Main Content -->
+
+
+ </div>
+
+
+</section>
+
+
+</div>
+
+ </div>
+ <!-- Footer -->
+ <section class="ourSites">
+ <div class="container">
+ <div class="row">
+ <div class="col-md-12">
+ <ul>
+ <li class="title">Our sites</li>
+ <li>
+ <a target="_blank" title="Jersey Tourism opens in new window" href="http://www.jersey.com/">Jersey Tourism</a>
+ </li>
+ <li>
+ <a target="_blank" title="Locate Jersey opens in new window" href="http://www.locatejersey.com/">Locate Jersey</a>
+ </li>
+ <li>
+ <a target="_blank" title="States Assembly opens in new window" href="http://www.statesassembly.gov.je/">States Assembly</a>
+ </li>
+ <li>
+ <a target="_blank" title="m.gov.je opens in new window" href="http://m.gov.je/">m.gov.je</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ </section>
+ <footer>
+ <div class="container">
+ <div class="row">
+ <div class="col-md-12">
+ <dl id="socialMedia">
+ <dt>Find us on social media
+ </dt>
+ <dd>
+ <a title="Twitter" target="_blank" href="https://twitter.com/StatesofJersey">
+ <i class="fi-social-twitter size-36"></i>
+ <i class="socialText">Twitter
+ </i>
+ </a>
+ </dd>
+ <dd>
+ <a title="LinkedIn" target="_blank" href="https://www.linkedin.com/company/states-of-jersey">
+ <i class="fi-social-linkedin size-36"></i>
+ <i class="socialText">LinkedIn
+ </i>
+ </a>
+ </dd>
+ <dd>
+ <a title="Facebook" target="_blank" href="https://www.facebook.com/StatesofJersey">
+ <i class="fi-social-facebook size-36"></i>
+ <i class="socialText">Facebook
+ </i>
+ </a>
+ </dd>
+ <dd>
+ <a title="Youtube" target="_blank" href="https://www.youtube.com/user/StatesofJersey">
+ <i class="fi-social-youtube size-36"></i>
+ <i class="socialText">YouTube
+ </i>
+ </a>
+ </dd>
+ </dl>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-md-12">
+ <ul class="footerLinks"><li><a href="/Pages/Accessibility.aspx">Accessibility</a></li><li><a href="/Pages/ContactUs.aspx">Contact us</a></li><li><a href="/Pages/Privacy.aspx">Privacy</a></li><li><a href="/Pages/Sitemap.aspx">Sitemap</a></li><li><a href="/Pages/Terms.aspx">Terms and conditions</a></li><li class="right">© States of Jersey 2015</li></ul>
+
+ </div>
+ </div>
+ </div>
+ </footer>
+
+ <script src="/_controltemplates/15/C5.GovJEResponsive/Scripts/bootstrap.min.js"></script>
+ <script src="/_controltemplates/15/C5.GovJEResponsive/Scripts/respond.min.js"></script>
+ <script src="/_controltemplates/15/C5.GovJEResponsive/Scripts/loadingSVG.js"></script>
+ <script src="/_controltemplates/15/C5.GovJEResponsive/Scripts/tables.js"></script>
+
+ <script type="text/javascript">
+
+ (function (i, s, o, g, r, a, m) {
+ i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
+ (i[r].q = i[r].q || []).push(arguments)
+ }, i[r].l = 1 * new Date(); a = s.createElement(o),
+ m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
+ })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
+
+ ga('create', 'UA-12796584-1', 'auto');
+ ga('send', 'pageview');
+ </script>
+
+
+<!-- WebMetric snippet starts here -->
+
+ <div class="gm_sidebar gm_sidebar_cnr">
+ <a
+ href="//websurveys.govmetric.com/theme/gm/1574"
+ target="_blank"
+ class="gm_sidebar_anchor"
+ title="feedback"
+ rel="nofollow">
+ <img src="//wsstatic.govmetric.com/imgs/triggers/cnr.png" alt="rating button" />
+ </a>
+</div>
+<script type="text/javascript" src="//wsstatic.govmetric.com/js/client/gm_sidebar.js"></script>
+<script type="text/javascript" src="//hitcounter.govmetric.com/1575"></script>
+
+<!-- WebMetric snippet ends here -->
+
+ <div style="display: none">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ </div>
+
+<script type="text/javascript">RegisterSod("initstrings.js", "\u002f_layouts\u002f15\u002f1033\u002finitstrings.js?rev=4Yrxyggg5knao3D48Ii\u00252FWA\u00253D\u00253D");</script>
+<script type="text/javascript">
+//<![CDATA[
+var _spFormDigestRefreshInterval = 1440000;window.g_updateFormDigestPageLoaded = new Date(); window.g_updateFormDigestPageLoaded.setDate(window.g_updateFormDigestPageLoaded.getDate() -5);//]]>
+</script>
+</form>
+</body>
+</html>
+
diff --git a/time-index.txt b/time-index.txt
new file mode 100644
index 0000000..9267f28
--- /dev/null
+++ b/time-index.txt
@@ -0,0 +1 @@
+1497992187 \ No newline at end of file
diff --git a/uv.png b/uv.png
new file mode 100644
index 0000000..f086245
--- /dev/null
+++ b/uv.png
@@ -0,0 +1,6 @@
+<svg height="250" width="350" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
+<a xlink:href="http://www.gov.je/weather/">
+ <text x="15" y="15" fill="red">Channel Islands weather images can be found at</text>
+ <text x="15" y="45" fill="red">http://www.gov.je/weather</text>
+</a>
+</svg> \ No newline at end of file
diff --git a/wind.png b/wind.png
new file mode 100644
index 0000000..f086245
--- /dev/null
+++ b/wind.png
@@ -0,0 +1,6 @@
+<svg height="250" width="350" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
+<a xlink:href="http://www.gov.je/weather/">
+ <text x="15" y="15" fill="red">Channel Islands weather images can be found at</text>
+ <text x="15" y="45" fill="red">http://www.gov.je/weather</text>
+</a>
+</svg> \ No newline at end of file