remote_partial 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,7 +3,7 @@ require 'net/http'
3
3
 
4
4
  module RemotePartial
5
5
  class ResourceManager
6
- attr_reader :content, :url, :criteria
6
+ attr_reader :url, :criteria
7
7
 
8
8
  def self.get_page(url)
9
9
  Nokogiri::HTML(get_raw(url))
@@ -26,13 +26,15 @@ module RemotePartial
26
26
 
27
27
  def initialize(url, criteria = nil)
28
28
  @url = url
29
- @content = self.class.get_page(url)
30
29
  @criteria = criteria
31
30
  end
32
31
 
33
32
  def html
34
- return content.to_s unless criteria
35
- content.search(criteria).to_s
33
+ if criteria
34
+ self.class.get_page(@url).search(criteria).to_s
35
+ else
36
+ self.class.get_raw(@url).force_encoding('UTF-8')
37
+ end
36
38
  end
37
39
 
38
40
  def output_to(path)
@@ -1,19 +1,28 @@
1
1
  module RemotePartial
2
- VERSION = "0.1.1"
2
+ VERSION = "0.2.0"
3
3
  end
4
4
 
5
5
  # History
6
6
  # =======
7
7
  #
8
- # 0.0.1 Initial release
9
- # ---------------------
10
- # Most functionality working, but not fully tested within a separate host app
8
+ # 0.2.0 UTF-8 Fix
9
+ # ---------------
10
+ # Fixes a fundamental flaw in earlier versions. Previously the encoding used in
11
+ # the file transfer from the remote site was not being set.
11
12
  #
12
- # 0.1.0 First beta version
13
- # ------------------------
14
- # Updated following tests using a separate host app
13
+ # Also Nokogiri was appending header information on to page, so this version
14
+ # only uses Nokogiri if part of the page needs to be extracted via criteria.
15
15
  #
16
16
  # 0.1.1 Remove option to alter remote_partials destination folder
17
17
  # ---------------------------------------------------------------
18
18
  # The functionality was not working and just added extra complication
19
19
  #
20
+ # 0.1.0 First beta version
21
+ # ------------------------
22
+ # Updated following tests using a separate host app
23
+ #
24
+ # 0.0.1 Initial release
25
+ # ---------------------
26
+ # Most functionality working, but not fully tested within a separate host app
27
+ #
28
+
@@ -1 +1 @@
1
- <strong id="ct" class="big">Friday, July 5, 2013 at 2:36:18 PM</strong>
1
+ <strong id="ct" class="big">Friday, July 5, 2013 at 3:50:55 PM</strong>
@@ -1,38 +1,47 @@
1
- <!DOCTYPE html>
2
- <html><body>
3
- <p>&gt;
1
+ <!DOCTYPE html />
4
2
  <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en-US"> <![endif]-->
5
3
  <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en-US"> <![endif]-->
6
4
  <!--[if IE 8]> <html class="no-js lt-ie9" lang="en-US"> <![endif]-->
7
- <!--[if gt IE 8]><!--> <!--<![endif]-->
8
- </p>
5
+ <!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->
6
+ <head>
9
7
  <!-- Title -->
10
8
  <title>Warwickshire Direct - Residents</title>
11
- <!-- Description --><meta name="description" content="">
12
- <!-- Charset --><meta charset="UTF-8">
13
- <!-- Use the latest builds of browsers --><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
14
- <!-- Mobile device rendering --><meta name="viewport" content="width=device-width">
15
- <!-- Twitter --><meta name="twitter:card" content="summary">
16
- <meta name="twitter:site" content="@wcc_news">
17
- <meta name="twitter:url" content="">
18
- <meta name="twitter:title" content="">
19
- <meta name="twitter:description" content="">
20
- <meta name="twitter:image" content="">
21
- <!-- Facebook --><link rel="image_src" href="">
22
- <!-- OpenGraph --><meta property="og:title" content="">
23
- <meta property="og:description" content="">
24
- <meta property="og:url" content="">
25
- <meta property="og:type" content="website">
26
- <meta property="og:site_name" content="Warwickshire Direct - Residents">
27
- <meta property="og:image" content="">
28
- <!-- Microdata --><meta itemprop="name" content="">
29
- <meta itemprop="description" content="">
30
- <meta itemprop="url" content="">
31
- <!-- Keywords --><meta name="keywords" content="">
32
- <!-- Icons --><link rel="shortcut icon" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/favicon.ico">
33
- <link rel="icon" type="image/png" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/favicon.png">
34
- <link rel="apple-touch-icon" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/apple-touch-icon.png">
35
- <!-- Analytics --><script type="text/javascript">
9
+ <!-- Description -->
10
+ <meta name="description" content="">
11
+ <!-- Charset -->
12
+ <meta charset="UTF-8" />
13
+ <!-- Use the latest builds of browsers -->
14
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
15
+ <!-- Mobile device rendering -->
16
+ <meta name="viewport" content="width=device-width" />
17
+ <!-- Twitter -->
18
+ <meta name="twitter:card" content="summary">
19
+ <meta name="twitter:site" content="@wcc_news">
20
+ <meta name="twitter:url" content="">
21
+ <meta name="twitter:title" content="">
22
+ <meta name="twitter:description" content="">
23
+ <meta name="twitter:image" content="">
24
+ <!-- Facebook -->
25
+ <link rel="image_src" href="" />
26
+ <!-- OpenGraph -->
27
+ <meta property="og:title" content=""/>
28
+ <meta property="og:description" content=""/>
29
+ <meta property="og:url" content=""/>
30
+ <meta property="og:type" content="website"/>
31
+ <meta property="og:site_name" content="Warwickshire Direct - Residents"/>
32
+ <meta property="og:image" content="" />
33
+ <!-- Microdata -->
34
+ <meta itemprop="name" content="">
35
+ <meta itemprop="description" content="">
36
+ <meta itemprop="url" content="">
37
+ <!-- Keywords -->
38
+ <meta name="keywords" content="" />
39
+ <!-- Icons -->
40
+ <link rel="shortcut icon" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/favicon.ico" />
41
+ <link rel="icon" type="image/png" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/favicon.png" />
42
+ <link rel="apple-touch-icon" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/apple-touch-icon.png" />
43
+ <!-- Analytics -->
44
+ <script type="text/javascript">
36
45
  var _gaq = _gaq || [];
37
46
  _gaq.push(['_setAccount', 'UA-9510501-3']);
38
47
  _gaq.push(['_trackPageview']);
@@ -44,12 +53,24 @@
44
53
  var s = document.getElementsByTagName('script')[0];
45
54
  s.parentNode.insertBefore(ga, s);
46
55
  })();
47
- </script><!-- Semantic markup declarations --><link rel="profile" href="http://gmpg.org/xfn/11">
48
- <!-- Style --><link rel="stylesheet" type="text/css" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/style.css">
49
- <style>body {padding-top: 43px;padding-bottom: 40px;}</style>
50
- <link rel="stylesheet" type="text/css" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/bootstrap-responsive.css">
51
- <link rel="stylesheet" type="text/css" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/main.css">
52
- <!-- Scripts --><script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/modernizr-2.6.2-respond-1.1.0.min.js" type="text/javascript"></script><script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/jquery-1.9.0.min.js" type="text/javascript"></script><script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/bootstrap.min.js" type="text/javascript"></script><script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/main.js" type="text/javascript"></script><script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/jquery.cycle.js" type="text/javascript"></script><script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/jquery.zrssfeed.o.js" type="text/javascript"></script><script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/homepage-slider-test.js" type="text/javascript"></script><!-- Analytics - Event Tracking --><script type="text/javascript">
56
+ </script>
57
+ <!-- Semantic markup declarations -->
58
+ <link rel="profile" href="http://gmpg.org/xfn/11" />
59
+ <!-- Style -->
60
+ <link rel="stylesheet" type="text/css" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/style.css" />
61
+ <style>body {padding-top: 43px;padding-bottom: 40px;}</style>
62
+ <link rel="stylesheet" type="text/css" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/bootstrap-responsive.css">
63
+ <link rel="stylesheet" type="text/css" href="http://www.warwickshire.gov.uk/wp-content/themes/gamma/main.css">
64
+ <!-- Scripts -->
65
+ <script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/modernizr-2.6.2-respond-1.1.0.min.js" type="text/javascript"></script>
66
+ <script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/jquery-1.9.0.min.js" type="text/javascript"></script>
67
+ <script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/bootstrap.min.js" type="text/javascript"></script>
68
+
69
+ <script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/main.js" type="text/javascript"></script>
70
+ <script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/jquery.cycle.js" type="text/javascript"></script><script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/jquery.zrssfeed.o.js" type="text/javascript"></script> <script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/homepage-slider-test.js" type="text/javascript"></script></head>
71
+ <body class="style-1">
72
+ <!-- Analytics - Event Tracking -->
73
+ <script type="text/javascript">
53
74
  jQuery(document).ready(function(){
54
75
  // Each time a link is clicked, this function gets called
55
76
  jQuery('#secondary a').click(function(){
@@ -74,9 +95,11 @@
74
95
 
75
96
  });
76
97
  });
77
- </script><!--[if lt IE 7]>
98
+ </script>
99
+ <!--[if lt IE 7]>
78
100
  <div class="alert alert-error"><strong>You are using an outdated browser</strong>. You may want to <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div>
79
- <![endif]--><div class="navbar navbar-inverse navbar-fixed-top">
101
+ <![endif]-->
102
+ <div class="navbar navbar-inverse navbar-fixed-top">
80
103
  <div class="navbar-inner">
81
104
  <div class="container">
82
105
  <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
@@ -84,10 +107,11 @@
84
107
  <span class="icon-bar"></span>
85
108
  <span class="icon-bar"></span>
86
109
  </a>
87
- <a class="brand" href="//www.warwickshire.gov.uk/"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/corpwhitelogo.png" alt="Warwickshire Direct" style="width:60px;"></a>
110
+ <a class="brand" href="//www.warwickshire.gov.uk/"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/corpwhitelogo.png" alt="Warwickshire Direct" style="width:60px;" /></a>
88
111
  <div class="nav-collapse collapse">
89
- <nav><ul class="nav">
90
- <li><a href="http://news.warwickshire.gov.uk/">News</a></li>
112
+ <nav>
113
+ <ul class="nav">
114
+ <li><a href="http://news.warwickshire.gov.uk/">News</a></li>
91
115
  <li><a href="/events">Events</a></li>
92
116
  <li><a href="/jobs">Jobs</a></li>
93
117
  <li class=" active"><a href="http://www.warwickshire.gov.uk/">Warwickshire Direct</a></li>
@@ -96,22 +120,22 @@
96
120
  <li class="dropdown">
97
121
  <a href="#" class="dropdown-toggle" data-toggle="dropdown">More <b class="caret"></b></a>
98
122
  <ul class="dropdown-menu">
99
- <li><a href="/consultations">Consultations</a></li>
123
+ <li><a href="/consultations">Consultations</a></li>
100
124
  <li><a href="/democracy">Democracy</a></li>
101
- <li class="divider">
125
+ <li class="divider"></li>
102
126
  <li class="nav-header">Other sites</li>
103
127
  <li><a href="/spp">Staff, Partners and Practitioners</a></li>
104
128
  </ul>
105
- </li>
106
- </ul></nav>
107
- </div>
108
- <!--/.nav-collapse -->
129
+ </li>
130
+ </ul>
131
+ </nav>
132
+ </div><!--/.nav-collapse -->
109
133
  <div class="nav-collapse collapse pull-right span2" id="right-topbar">
110
134
  <ul class="nav">
111
- <li class="dropdown">
135
+ <li class="dropdown">
112
136
  <a href="/myaccount" class="dropdown-toggle" data-toggle="dropdown">My Account <b class="caret"></b></a>
113
137
  <ul class="dropdown-menu">
114
- <li>
138
+ <li>
115
139
  <a href="/me@wcc">Me@WCC</a>
116
140
  <p class="nav-header" style="font-weight:normal;text-transform:none !important;">Setup school closure alerts, manage event submissions, submit licence applications, or access Atlas</p>
117
141
  </li>
@@ -127,50 +151,53 @@
127
151
  <a href="/myaccount">Other accounts</a>
128
152
  </li>
129
153
  </ul>
130
- </li>
154
+ </li>
131
155
  </ul>
132
- </div>
156
+ </div>
133
157
  </div>
134
158
  </div>
135
159
  </div>
136
160
 
137
161
  <div id="rss-me"></div>
138
-
162
+ <?
139
163
  // relsub_single_rss('#rss-me', 'http://feeds.feedburner.com/alerts-approvedpremisenotice', 5, true, true);
140
- ?&gt;
164
+ ?>
141
165
 
142
- <!-- No active alerts --><div id="cookie-container" style="display:none;"><div id="cookie-tip" class="alert alert-info">We use cookies to improve your visit to this site. Details of the cookies we use, and how to block them, can be found on our cookies page. <a href="/cookies">Find out more about our cookies.</a><button id="cookie-ok" class="ButtonDynamic btn btn-info btn-mini">OK</button>
143
- </div></div>
166
+ <div id="top-site-alert" class="alert alert-error sitewide-alert">Essential website maintenance is planned for <strong>Saturday 6th July</strong> between <strong>3pm - 4pm</strong>. This may effect the availability of some Warwickshire County Council websites or services. We apologise for any inconvenience caused. </div><div id="cookie-container" style="display:none;"><div id="cookie-tip" class="alert alert-info">We use cookies to improve your visit to this site. Details of the cookies we use, and how to block them, can be found on our cookies page. <a href="/cookies">Find out more about our cookies.</a><button id="cookie-ok" class="ButtonDynamic btn btn-info btn-mini">OK</button></div></div>
144
167
  <div class="row style-1-gradient" id="top-header">
145
168
  <div class="container">
146
169
  <div class="span12" style="height:100px;">
147
170
  <div class="row">
148
171
  <div id="logo-wrap" class="span3" style="padding-top:15px;padding-bottom:15px;">
149
- <a href="http://www.warwickshire.gov.uk/"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/wdwhitelogo.png" alt="Warwickshire County Council - home" title="Warwickshire County Council - home"></a> </div>
172
+ <a href="http://www.warwickshire.gov.uk/"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/wdwhitelogo.png" alt="Warwickshire County Council - home" title="Warwickshire County Council - home" ></a> </div>
150
173
  <div class="span9">
151
174
  <div class="row">
152
175
  <div class="span9">
153
176
  <form action="http://search3.openobjects.com/kb5/warwickshire/search/results.page" method="get" name="kbs" class="navbar-form pull-right" id="site-search">
154
177
  <label for="qtbottom" class="skip" style="display:none;">Search again</label>
155
- <input class="span3" type="text" maxlength="1000" size="40" name="qt" id="qtbottom" alt="Search" placeholder="Search" accesskey="4"><button type="submit" value="Search" id="kbsubmitbottom" class="btn btn-mini">Go</button>
178
+ <input class="span3" type="text" maxlength="1000" size="40" name="qt" id="qtbottom" alt="Search" placeholder="Search" accesskey="4">
179
+ <button type="submit" value="Search" id="kbsubmitbottom" class="btn btn-mini">Go</button>
156
180
  </form>
157
181
  </div>
158
182
  </div>
159
183
  <div class="row">
160
184
  <div id="site-tabs" class="span9">
161
185
  <ul class="nav nav-tabs">
162
- <li class="tab active"><a href="/home">Residents</a></li>
186
+ <li class="tab active"><a href="/home">Residents</a></li>
163
187
  <li class="tab"><a href="/business">Businesses</a></li>
164
188
  <li class="tab"><a href="/corporate">About the council</a></li>
165
189
  </ul>
166
- </div>
190
+ </div>
167
191
  </div>
168
192
  </div>
169
193
  </div>
170
194
  </div>
171
195
  </div>
172
196
  </div>
173
- <script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/cookie-message.js" type="text/javascript"></script><div class="container" style="margin-top:20px;">
197
+ <script src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/js/cookie-message.js" type="text/javascript"></script>
198
+
199
+
200
+ <div class="container" style="margin-top:20px;">
174
201
 
175
202
 
176
203
 
@@ -179,19 +206,16 @@
179
206
  <!--Superbox-->
180
207
  <div id="super-box" class="span8">
181
208
  <div id="sb-mobile-nav">
182
- <img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/feature-arrow-left.png" id="sb-leftarrow"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/feature-arrow-right.png" id="sb-rightarrow">
183
- </div>
209
+ <img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/feature-arrow-left.png" id="sb-leftarrow">
210
+ <img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/feature-arrow-right.png" id="sb-rightarrow">
211
+ </div>
184
212
  <div class="tabbable tabs-left">
185
213
  <ul id="super-menu" class="nav nav-tabs">
186
- <li class="active"><a href="#tab-1" data-toggle="tab">Report it</a></li>
187
- <li><a href="#tab-2" data-toggle="tab">Your library</a></li>
188
- <li><a href="#tab-3" data-toggle="tab">Find a job</a></li>
189
- <li><a href="#tab-4" data-toggle="tab">Plan a journey</a></li>
190
- <li><a href="#tab-5" data-toggle="tab">Your school</a></li>
191
- <li><a href="#tab-6" data-toggle="tab">Latest tweets</a></li> </ul>
192
- <div class="tab-content">
193
- <div class="tab-pane active" id="tab-1">
194
- <div class="sb-row">
214
+ <li class="active"><a href="#tab-1" data-toggle="tab">Report it</a></li><li><a href="#tab-2" data-toggle="tab">Your library</a></li><li><a href="#tab-3" data-toggle="tab">Find a job</a></li><li><a href="#tab-4" data-toggle="tab">Plan a journey</a></li><li><a href="#tab-5" data-toggle="tab">Your school</a></li><li><a href="#tab-6" data-toggle="tab">Latest tweets</a></li> </ul>
215
+
216
+
217
+ <div class="tab-content">
218
+ <div class="tab-pane active" id="tab-1"><div class="sb-row">
195
219
  <div class="sb-column one">
196
220
  <h3>Report it</h3>
197
221
  </div>
@@ -200,17 +224,17 @@
200
224
  <div class="sb-row">
201
225
  <div class="sb-column three">
202
226
  <div class="sb-icon-button">
203
- <a href="http://www.warwickshire.gov.uk/reporthighwayproblem"><img title="Report highway problems" alt="Report highway problems" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/%24file/highwayproblems.png"><p>Highway problems</p></a>
227
+ <a href="http://www.warwickshire.gov.uk/reporthighwayproblem"><img title="Report highway problems" alt="Report highway problems" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/$file/highwayproblems.png"><p>Highway problems</p></a>
204
228
  </div>
205
229
  </div>
206
230
  <div class="sb-column three">
207
231
  <div class="sb-icon-button">
208
- <a href="http://www.warwickshire.gov.uk/potholes"><img title="Report potholes" alt="Report potholes" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/%24file/potholes.png"><p>Potholes</p></a>
232
+ <a href="http://www.warwickshire.gov.uk/potholes"><img title="Report potholes" alt="Report potholes" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/$file/potholes.png"><p>Potholes</p></a>
209
233
  </div>
210
234
  </div>
211
235
  <div class="sb-column three">
212
236
  <div class="sb-icon-button">
213
- <a href="http://www.warwickshire.gov.uk/flytippingandlitter"><img title="Report fly tipping" alt="Report fly tipping" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/%24file/flytipping.png"><p>Fly tipping</p></a>
237
+ <a href="http://www.warwickshire.gov.uk/flytippingandlitter"><img title="Report fly tipping" alt="Report fly tipping" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/$file/flytipping.png"><p>Fly tipping</p></a>
214
238
  </div>
215
239
  </div>
216
240
  </div>
@@ -230,23 +254,21 @@
230
254
  -->
231
255
  <div class="sb-column three">
232
256
  <div class="sb-icon-button">
233
- <a href="/safeguardingadults"><img title="Vulnerable adults" alt="Vulnerable adults" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/%24file/adults.png"><p>Vulnerable adults</p></a>
257
+ <a href="/safeguardingadults"><img title="Vulnerable adults" alt="Vulnerable adults" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/$file/adults.png"><p>Vulnerable adults</p></a>
234
258
  </div>
235
259
  </div>
236
260
  <div class="sb-column three">
237
261
  <div class="sb-icon-button">
238
- <a href="http://www.warwickshire.gov.uk/childprotection"><img title="Child protection" alt="Child protection" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/%24file/childprotection.png"><p>Child protection</p></a>
262
+ <a href="http://www.warwickshire.gov.uk/childprotection"><img title="Child protection" alt="Child protection" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/$file/childprotection.png"><p>Child protection</p></a>
239
263
  </div>
240
264
  </div>
241
265
 
242
266
  <div class="sb-column three">
243
267
  <div class="sb-icon-button">
244
- <a href="http://www.warwickshire.gov.uk/reportit"><img title="more reporting" alt="More reporting" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/%24file/morereporting.png"><p>More reporting...</p></a>
268
+ <a href="http://www.warwickshire.gov.uk/reportit"><img title="more reporting" alt="More reporting" src="http://www.warwickshire.gov.uk//Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/$file/morereporting.png"><p>More reporting...</p></a>
245
269
  </div>
246
270
  </div>
247
- </div>
248
- </div>
249
- <div class="tab-pane" id="tab-2"><div class="sb-row">
271
+ </div></div><div class="tab-pane" id="tab-2"><div class="sb-row">
250
272
  <div class="sb-column one">
251
273
  <h3>Your library</h3>
252
274
  <h4>Search the library catalogue for books, CDs and DVDs.</h4>
@@ -254,44 +276,43 @@
254
276
  <div id="libraries-nav-search">
255
277
 
256
278
  <form method="get" action="http://librarycatalogue.warwickshire.gov.uk/ABwarwick/default.ashx" id="" name="">
257
- <input id="libraries-nav-search-box" type="text" name="q" placeholder="Search the library catalogue"><button id="libraries-nav-search-button" type="submit" class="btn btn-3">Submit</button>
279
+ <input id="libraries-nav-search-box" type="text" name="q" placeholder="Search the library catalogue">
280
+ <button id="libraries-nav-search-button" type="submit" class="btn btn-3">Submit</button>
258
281
  </form>
259
282
 
260
283
  </div>
261
284
 
262
- <ul>
285
+ <ul>
263
286
  <li><a href="/renew">Renew your library items</a></li>
264
287
  <li><a href="/findalibrary">Find a library</a></li>
265
288
  <li><a href="/jointhelibrary">Join the library</a></li>
266
- </ul>
289
+ </ul>
290
+
267
291
  </div>
268
292
 
269
- </div></div>
270
- <div class="tab-pane" id="tab-3"> <div class="sb-row">
293
+ </div></div><div class="tab-pane" id="tab-3"> <div class="sb-row">
271
294
  <div class="sb-column two">
272
295
  <h3>Latest jobs</h3>
273
- <ul>
274
- <li>The council jobs feed will be back shortly</li>
296
+ <ul>
297
+ <li>The council jobs feed will be back shortly</a></li>
275
298
  <li>Apologies for the inconvenience</li>
276
- </ul>
299
+ </ul>
277
300
  <h5><a href="http://www.wmjobs.co.uk/careers/list.aspx?ID=QUVFK026203F3VBQB7V8NV45Y&amp;mask=wmj&amp;LG=UK&amp;statlog=1&amp;Resultsperpage=10&amp;LOV1=All&amp;LOV45=All&amp;LOV10=All&amp;SUBDEPT1=1300">More council jobs...</a></h5>
278
301
  </div>
279
302
  <div class="sb-column two">
280
303
  <h3>Job links</h3>
281
- <ul>
282
- <li><a href="http://www.wmjobs.co.uk/careers/list.aspx?ID=QUVFK026203F3VBQB7V8NV45Y&amp;mask=wmj&amp;LG=UK&amp;statlog=1&amp;Resultsperpage=10&amp;LOV1=All&amp;LOV45=All&amp;LOV10=All&amp;SUBDEPT1=1300">All council jobs</a></li>
304
+ <ul>
305
+ <li><a href="http://www.wmjobs.co.uk/careers/list.aspx?ID=QUVFK026203F3VBQB7V8NV45Y&amp;mask=wmj&amp;LG=UK&amp;statlog=1&amp;Resultsperpage=10&amp;LOV1=All&amp;LOV45=All&amp;LOV10=All&amp;SUBDEPT1=1300">All council jobs</a></li>
283
306
  <li><a href="http://www.wmjobs.co.uk/careers/list.aspx?ID=QUVFK026203F3VBQB7V8NV45Y&amp;mask=wmj&amp;LG=UK&amp;statlog=1&amp;Resultsperpage=10&amp;LOV1=15644&amp;LOV45=All&amp;LOV10=All&amp;SUBDEPT1=396">All teaching jobs</a></li>
284
307
  <li><a href="http://www.wmjobs.co.uk/careers/searchagent.aspx">Job alerts</a></li>
285
308
  <li><a href="http://www.wmjobs.co.uk/our-employers/warwickshire-county-council/">How to apply</a></li>
286
309
  <li><a href="http://www.warwickshire.gov.uk/applicantinfo">Guidance for applicants</a></li>
287
310
  <li><a href="http://www.wmjobs.co.uk/our-employers/warwickshire-county-council/">Working for the council</a></li>
288
311
  <li><a href="/careers">Careers</a></li>
289
- </ul>
290
- </div>
312
+ </ul>
313
+ </div>
291
314
 
292
- </div>
293
- </div>
294
- <div class="tab-pane" id="tab-4"> <div class="sb-row">
315
+ </div></div><div class="tab-pane" id="tab-4"> <div class="sb-row">
295
316
  <div class="sb-column one">
296
317
  <h3>Plan your journey</h3>
297
318
  <p>Enter your post-code, location or town.</p>
@@ -299,7 +320,9 @@
299
320
 
300
321
  <form method="post" action="http://www.travelinesw.com/swe/XSLT_TRIP_REQUEST2" id="efaForm" name="">
301
322
 
302
- <input type="hidden" name="sessionID" id="mdv_sessionID" value="0"><input type="hidden" name="requestID" id="mdv_requestID" value="0"><input type="hidden" name="language" id="mdv_language" value="en"><input type="hidden" name="command" id="mdv_command" value=""><input type="hidden" name="execInst" id="mdv_execInst" value="normal"><input type="hidden" name="locationServerActive" value="1"><input type="hidden" name="locationInfoActive" value="1"><input type="hidden" name="coordListOutputFormat" value="string"><input type="hidden" name="coordOutputFormatTail" value="0"><input type="hidden" name="convertStopsPTKernel2LocationServer" value="1"><input type="hidden" name="convertAddressesITKernel2LocationServer" value="1"><input type="hidden" name="convertCoord2LocationServer" value="1"><input type="hidden" name="convertCrossingsITKernel2LocationServer" value="1"><input type="hidden" name="convertPOIsITKernel2LocationServer" value="1"><input type="hidden" name="useProxFootSearch" value="1"><input type="hidden" name="anySigWhenPerfectNoOtherMatches" value="1"><input type="hidden" name="stateless" value="1"><input type="hidden" name="useAllStops" value="1"><input type="hidden" name="itdLPxx_view" value="advanced"><input type="hidden" name="type_origin" value="any"><input type="hidden" name="type_destination" value="any"><input type="hidden" name="nameDefaultText_origin" value="City, Town, Village, Address, Post Code, Station or Airport"><input type="hidden" name="nameDefaultText_destination" value="City, Town, Village, Address, Post Code, Station or Airport"><input type="hidden" name="useHouseNumberList_origin" value="1"><input type="hidden" name="useHouseNumberList_destination" value="1"><p><span class="form-label">From:</span>
323
+ <input type="hidden" name="sessionID" id="mdv_sessionID" value="0"><input type="hidden" name="requestID" id="mdv_requestID" value="0"><input type="hidden" name="language" id="mdv_language" value="en"><input type="hidden" name="command" id="mdv_command" value=""><input type="hidden" name="execInst" id="mdv_execInst" value="normal"><input type="hidden" name="locationServerActive" value="1"><input type="hidden" name="locationInfoActive" value="1"><input type="hidden" name="coordListOutputFormat" value="string"> <input type="hidden" name="coordOutputFormatTail" value="0"><input type="hidden" name="convertStopsPTKernel2LocationServer" value="1"><input type="hidden" name="convertAddressesITKernel2LocationServer" value="1"><input type="hidden" name="convertCoord2LocationServer" value="1"><input type="hidden" name="convertCrossingsITKernel2LocationServer" value="1"><input type="hidden" name="convertPOIsITKernel2LocationServer" value="1"><input type="hidden" name="useProxFootSearch" value="1"><input type="hidden" name="anySigWhenPerfectNoOtherMatches" value="1"><input type="hidden" name="stateless" value="1"><input type="hidden" name="useAllStops" value="1"><input type="hidden" name="itdLPxx_view" value="advanced"><input type="hidden" name="type_origin" value="any"> <input type="hidden" name="type_destination" value="any"><input type="hidden" name="nameDefaultText_origin" value="City, Town, Village, Address, Post Code, Station or Airport"><input type="hidden" name="nameDefaultText_destination" value="City, Town, Village, Address, Post Code, Station or Airport"><input type="hidden" name="useHouseNumberList_origin" value="1"><input type="hidden" name="useHouseNumberList_destination" value="1">
324
+
325
+ <p><span class="form-label">From:</span>
303
326
  <input class="form-input" type="text" name="name_origin" placeholder="From:"></p>
304
327
  <p><span class="form-label">To:</span>
305
328
  <input class="form-input" type="text" name="name_destination" placeholder="To:"></p>
@@ -310,20 +333,18 @@
310
333
  </div>
311
334
  <div class="sb-row">
312
335
  <div class="sb-column two">
313
- <ul>
314
- <li><a href="/corporate/BusTime.nsf/f6ba0a2f0063538180256d40003b1059/%24searchForm?SearchView">Find a bus timetable</a></li>
336
+ <ul>
337
+ <li><a href="/corporate/BusTime.nsf/f6ba0a2f0063538180256d40003b1059/$searchForm?SearchView">Find a bus timetable</a></li>
315
338
  <li><a href="/busroutemaps">Bus route maps</a></li>
316
- </ul>
317
- </div>
339
+ </ul>
340
+ </div>
318
341
  <div class="sb-column two">
319
- <ul>
320
- <li><a href="/busservicechanges">Bus route changes</a></li>
342
+ <ul>
343
+ <li><a href="/busservicechanges">Bus route changes</a></li>
321
344
  <li><a href="/buses">More bus information</a></li>
322
- </ul>
323
- </div>
324
- </div>
325
- </div>
326
- <div class="tab-pane" id="tab-5"> <div class="sb-row">
345
+ </ul>
346
+ </div>
347
+ </div></div><div class="tab-pane" id="tab-5"> <div class="sb-row">
327
348
  <div class="sb-column one">
328
349
  <h3>Your school</h3>
329
350
  </div>
@@ -346,35 +367,33 @@
346
367
 
347
368
  <div class="sb-row">
348
369
  <div class="sb-column three">
349
- <ul>
350
- <li><a href="/schoolholidaydates">Term dates</a></li>
370
+ <ul>
371
+ <li><a href="/schoolholidaydates">Term dates</a></li>
351
372
  <li><a href="/admissions">Admissions</a></li>
352
- </ul>
353
- </div>
373
+ </ul>
374
+ </div>
354
375
  <div class="sb-column three">
355
- <ul>
356
- <li><a href="/schoolclosures">Closures</a></li>
376
+ <ul>
377
+ <li><a href="/schoolclosures">Closures</a></li>
357
378
  <li><a href="/schools">More schools</a></li>
358
- </ul>
359
- </div>
379
+ </ul>
380
+ </div>
360
381
  <div class="sb-column three">
361
- <ul>
362
- <li><a href="/schoolfinder">Find a school</a></li>
363
- </ul>
364
- </div>
382
+ <ul>
383
+ <li><a href="/schoolfinder">Find a school</a></li>
384
+ </ul>
385
+ </div>
365
386
  </div>
366
387
 
367
388
  <div class="sb-row">
368
389
  <div class="sb-column one">
369
390
  <p class="small-text">* Some schools may set teacher training days or have their own term dates (such as academies). Please check <a href="/schoolholidaydates">School term dates and holidays</a> or directly with your school.</p>
370
391
  </div>
371
- </div>
372
- </div>
373
- <div class="tab-pane" id="tab-6"><div class="sb-row">
392
+ </div></div><div class="tab-pane" id="tab-6"><div class="sb-row">
374
393
  <div id="sb-twitter-accounts" class="sb-column two">
375
394
  <h3>Social networking</h3>
376
- <ul>
377
- <li><a href="http://twitter.com/wcc_news">Warwickshire news</a></li>
395
+ <ul>
396
+ <li><a href="http://twitter.com/wcc_news">Warwickshire news</a></li>
378
397
  <li><a href="http://twitter.com/WarksFireRescue">Fire and rescue</a></li>
379
398
  <li><a href="http://twitter.com/OisinTheDeer">Museums</a></li>
380
399
  <li><a href="http://twitter.com/warksdirect">Warwickshire Direct</a></li>
@@ -382,38 +401,35 @@
382
401
  <li><a href="http://twitter.com/warkslibraries">Warwickshire Libraries</a></li>
383
402
  <li><a href="http://twitter.com/countryparks">Country parks</a></li>
384
403
  <li><a href="/socialnetworking">All social media accounts</a></li>
385
- </ul>
386
- </div>
404
+ </ul>
405
+ </div>
387
406
  <div id="sb-twitter-list" class="sb-column two">
388
407
  <a class="twitter-timeline" href="https://twitter.com/WCC_website/warwickshire-cc">Tweets from @WCC_website/warwickshire-cc</a>
389
- <script type="text/javascript">!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
390
- </div>
408
+ <script type="text/javascript">!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
409
+ </div>
391
410
  </div></div>
392
411
  </div>
393
412
 
394
413
  </div>
395
414
 
396
- </div>
397
- <!--end span8 SuperBox-->
415
+ </div><!--end span8 SuperBox-->
398
416
 
399
417
  <!--Newsbox-->
400
418
  <div id="nb" class="span4">
401
419
  <h2>Latest News</h2>
402
420
  <div id="featured-slider" class="carousel slide" height="300px">
403
421
  <div id="latest-news" class="carousel-inner"></div>
404
- <a class="left carousel-control" href="#featured-slider" data-slide="prev">‹</a>
405
- <a class="right carousel-control" href="#featured-slider" data-slide="next">›</a>
422
+ <a class="left carousel-control" href="#featured-slider" data-slide="prev">&lsaquo;</a>
423
+ <a class="right carousel-control" href="#featured-slider" data-slide="next">&rsaquo;</a>
406
424
  </div>
407
425
  <noscript>
408
426
  <p>Can't see our stories? It may be because JavaScript is turned off in your browser.</p>
409
427
  <p>To view our stories without JavaScript enabled, you can visit our <a href="//news.warwickshire.gov.uk">Warwickshire News</a> site.</p>
410
428
  </noscript>
411
429
  <script>jQuery(document).ready(function() {GetContent('http://feeds.feedburner.com/wntestex');jQuery(".no-js-error").addClass("js-enabled");});</script>
412
- </div>
413
- <!--end span4 NewsBox-->
430
+ </div><!--end span4 NewsBox-->
414
431
 
415
- </div>
416
- <!--end of feature area-->
432
+ </div><!--end of feature area-->
417
433
 
418
434
  <div class="row">
419
435
  <style>
@@ -490,261 +506,185 @@ color:#fff;
490
506
  }
491
507
 
492
508
 
493
- </style>
509
+ </style>
494
510
  <div class="span6">
495
511
  <h3 id="home-business" class="home-header"><a href="/business">Business</a></h3>
496
- <ul class="homepage-links">
497
- <li>
498
- <a href="/jobs">Jobs</a>,</li>
499
- <li>
500
- <a href="/procurement">tender opportunities</a>,</li>
501
- <li>
502
- <a href="/licenses">licences</a>,</li>
503
- <li>
504
- <a href="/businessadvice">business services</a>,</li>
505
- <li>
506
- <a href="/businesscentres">business centres</a>,</li>
507
- <li>
508
- <a href="/tradingstandards">trading standards</a>,</li>
512
+ <ul class="homepage-links">
513
+ <li><a href="/jobs">Jobs</a>,</li>
514
+ <li><a href="/procurement">tender opportunities</a>,</li>
515
+ <li><a href="/licenses">licences</a>,</li>
516
+ <li><a href="/businessadvice">business services</a>,</li>
517
+ <li><a href="/businesscentres">business centres</a>,</li>
518
+ <li><a href="/tradingstandards">trading standards</a>,</li>
509
519
  <li><a class="strong" href="/business">more business...</a></li>
510
- </ul>
520
+ </ul>
511
521
  </div>
512
522
 
513
523
  <div class="span6">
514
524
  <h3 id="home-environment" class="home-header"><a href="/environment">Environment</a></h3>
515
- <ul class="homepage-links">
516
- <li>
517
- <a href="/recycling">Recycling and waste</a>,</li>
518
- <li>
519
- <a href="/hwrc">recycling centres</a>,</li>
520
- <li>
521
- <a href="/parks">country parks</a>,</li>
522
- <li>
523
- <a href="/planning">planning</a>,</li>
524
- <li>
525
- <a href="/enjoycountryside">enjoy countryside</a>,</li>
525
+ <ul class="homepage-links">
526
+ <li><a href="/recycling">Recycling and waste</a>,</li>
527
+ <li><a href="/hwrc">recycling centres</a>,</li>
528
+ <li><a href="/parks">country parks</a>,</li>
529
+ <li><a href="/planning">planning</a>,</li>
530
+ <li><a href="/enjoycountryside">enjoy countryside</a>,</li>
526
531
  <li><a class="strong" href="/environment">more environment...</a></li>
527
- </ul>
532
+ </ul>
528
533
  </div>
529
534
 
530
535
  <div class="span6">
531
536
  <h3 id="home-health" class="home-header"><a href="/healthandwellbeing">Health</a></h3>
532
- <ul class="homepage-links">
533
- <li>
534
- <a href="/healthandwellbeing">Health and wellbeing</a>,</li>
535
- <li>
536
- <a href="/healthemergency">health emergencies</a>,</li>
537
- <li>
538
- <a href="/flu">flu</a>,</li>
539
- <li>
540
- <a href="/healthyeating">healthy eating</a>,</li>
541
- <li>
542
- <a href="/mentalhealth">mental health</a>,</li>
543
- <li>
544
- <a href="/yourrecovery">your recovery</a>,</li>
537
+ <ul class="homepage-links">
538
+ <li><a href="/healthandwellbeing">Health and wellbeing</a>,</li>
539
+ <li><a href="/healthemergency">health emergencies</a>,</li>
540
+ <li><a href="/flu">flu</a>,</li>
541
+ <li><a href="/healthyeating">healthy eating</a>,</li>
542
+ <li><a href="/mentalhealth">mental health</a>,</li>
543
+ <li><a href="/yourrecovery">your recovery</a>,</li>
545
544
  <li><a class="strong" href="/healthandwellbeing">more health...</a></li>
546
- </ul>
545
+ </ul>
547
546
  </div>
548
547
 
549
548
  <div class="span6">
550
549
  <h3 id="home-libraries" class="home-header"><a href="/librariesandleisure">Libraries and leisure</a></h3>
551
- <ul class="homepage-links">
552
- <li>
553
- <a href="/libraries">Libraries</a>,</li>
554
- <li>
555
- <a href="/renew">renew a library book</a>,</li>
556
- <li>
557
- <a href="/museums">museums</a>,</li>
558
- <li>
559
- <a href="/tourists">tourist information</a>,</li>
560
- <li>
561
- <a href="/parks">country parks</a>,</li>
562
- <li>
563
- <a href="/arts">arts</a>,</li>
550
+ <ul class="homepage-links">
551
+ <li><a href="/libraries">Libraries</a>,</li>
552
+ <li><a href="/renew">renew a library book</a>,</li>
553
+ <li><a href="/museums">museums</a>,</li>
554
+ <li><a href="/tourists">tourist information</a>,</li>
555
+ <li><a href="/parks">country parks</a>,</li>
556
+ <li><a href="/arts">arts</a>,</li>
564
557
  <li><a class="strong" href="/librariesandleisure">more leisure...</a></li>
565
- </ul>
558
+ </ul>
566
559
  </div>
567
560
 
568
561
  <div class="span6">
569
562
  <h3 id="home-registrations" class="home-header"><a href="/registrations">Registrations</a></h3>
570
- <ul class="homepage-links">
571
- <li>
572
- <a href="/births">Births</a>,</li>
573
- <li>
574
- <a href="/deaths">deaths</a>,</li>
575
- <li>
576
- <a href="/weddings">weddings and marriages</a>,</li>
577
- <li>
578
- <a href="/copycertificates">copy certificates</a>,</li>
579
- <li>
580
- <a href="/registrationoffices">registration offices</a>,</li>
563
+ <ul class="homepage-links">
564
+ <li><a href="/births">Births</a>,</li>
565
+ <li><a href="/deaths">deaths</a>,</li>
566
+ <li><a href="/weddings">weddings and marriages</a>,</li>
567
+ <li><a href="/copycertificates">copy certificates</a>,</li>
568
+ <li><a href="/registrationoffices">registration offices</a>,</li>
581
569
  <li><a class="strong" href="/registrations">more registrations...</a></li>
582
- </ul>
570
+ </ul>
583
571
  </div>
584
572
 
585
573
  <div class="span6">
586
574
  <h3 id="home-roads" class="home-header"><a href="/roadsandtravel">Roads and travel</a></h3>
587
- <ul class="homepage-links">
588
- <li>
589
- <a href="/buses">Buses</a>,</li>
590
- <li>
591
- <a href="/publictransport">public transport</a>,</li>
592
- <li>
593
- <a href="/roads">roads</a>,</li>
594
- <li>
595
- <a href="/roadworks">roadworks</a>,</li>
596
- <li>
597
- <a href="/schooltravel">school travel</a>,</li>
598
- <li>
599
- <a href="/licensesandpermits">permits</a>,</li>
600
- <li>
601
- <a href="/gritting">gritting</a>,</li>
602
- <li>
603
- <a href="/partnightlighting">Part night lighting</a>,</li>
575
+ <ul class="homepage-links">
576
+ <li><a href="/buses">Buses</a>,</li>
577
+ <li><a href="/publictransport">public transport</a>,</li>
578
+ <li><a href="/roads">roads</a>,</li>
579
+ <li><a href="/roadworks">roadworks</a>,</li>
580
+ <li><a href="/schooltravel">school travel</a>,</li>
581
+ <li><a href="/licensesandpermits">permits</a>,</li>
582
+ <li><a href="/gritting">gritting</a>,</li>
583
+ <li><a href="/partnightlighting">Part night lighting</a>,</li>
604
584
 
605
585
 
606
586
 
607
587
 
608
588
  <li><a class="strong" href="/roadsandtravel">more roads and travel...</a></li>
609
- </ul>
589
+ </ul>
610
590
  </div>
611
591
 
612
592
  <div class="span6">
613
593
  <h3 id="home-safety" class="home-header"><a href="/safetyandcrime">Safety and crime</a></h3>
614
- <ul class="homepage-links">
615
- <li>
616
- <a href="/crime">Crime and security</a>,</li>
617
- <li>
618
- <a href="/homesafety">home safety</a>,</li>
619
- <li>
620
- <a href="firesafety">fire safety</a>,</li>
621
- <li>
622
- <a href="/fireandrescue">fire and rescue</a>,</li>
623
- <li>
624
- <a href="/roadsafety">road safety</a>,</li>
625
- <li>
626
- <a href="/tradingstandards">trading standards</a>,</li>
594
+ <ul class="homepage-links">
595
+ <li><a href="/crime">Crime and security</a>,</li>
596
+ <li><a href="/homesafety">home safety</a>,</li>
597
+ <li><a href="firesafety">fire safety</a>,</li>
598
+ <li><a href="/fireandrescue">fire and rescue</a>,</li>
599
+ <li><a href="/roadsafety">road safety</a>,</li>
600
+ <li><a href="/tradingstandards">trading standards</a>,</li>
627
601
  <li><a class="strong" href="/safetyandcrime">more safety and crime...</a></li>
628
- </ul>
602
+ </ul>
629
603
  </div>
630
604
 
631
605
  <div class="span6">
632
606
  <h3 id="home-schools" class="home-header"><a href="/schoolsandlearning">Schools and learning</a></h3>
633
- <ul class="homepage-links">
634
- <li>
635
- <a href="/schools">Schools</a>,</li>
636
- <li>
637
- <a href="/schoolholidaydates">holiday dates</a>,</li>
638
- <li>
639
- <a href="/schoolclosures">school closures</a>,</li>
640
- <li>
641
- <a href="/admissions">admissions</a>,</li>
642
- <li>
643
- <a href="/music">music</a>,</li>
644
- <li>
645
- <a href="/childrenscentres">children's centres</a>,</li>
607
+ <ul class="homepage-links">
608
+ <li><a href="/schools">Schools</a>,</li>
609
+ <li><a href="/schoolholidaydates">holiday dates</a>,</li>
610
+ <li><a href="/schoolclosures">school closures</a>,</li>
611
+ <li><a href="/admissions">admissions</a>,</li>
612
+ <li><a href="/music">music</a>,</li>
613
+ <li><a href="/childrenscentres">children's centres</a>,</li>
646
614
  <li><a class="strong" href="/schoolsandlearning">more schools and learning...</a></li>
647
- </ul>
615
+ </ul>
648
616
  </div>
649
617
 
650
618
  <div class="span6">
651
619
  <h3 id="home-social" class="home-header"><a href="/socialcareandhealth">Social care and support</a></h3>
652
- <ul class="homepage-links">
653
- <li>
654
- <a href="/supportforadults">Adult support</a>,</li>
655
- <li>
656
- <a href="/supportforchildrenandfamilies">children &amp; families</a>,</li>
657
- <li>
658
- <a href="/childcare">childcare</a>,</li>
659
- <li>
660
- <a href="/fostering">fostering</a>,</li>
661
- <li>
662
- <a href="/emergencydutyteam">out of hours</a>,</li>
663
- <li>
664
- <a href="/carers">carers</a>,</li>
665
- <li>
666
- <a href="/directory">find local support services</a>,</li>
620
+ <ul class="homepage-links">
621
+ <li><a href="/supportforadults">Adult support</a>,</li>
622
+ <li><a href="/supportforchildrenandfamilies">children &amp; families</a>,</li>
623
+ <li><a href="/childcare">childcare</a>,</li>
624
+ <li><a href="/fostering">fostering</a>,</li>
625
+ <li><a href="/emergencydutyteam">out of hours</a>,</li>
626
+ <li><a href="/carers">carers</a>,</li>
627
+ <li><a href="/directory">find local support services</a>,</li>
667
628
  <li><a class="strong" href="/socialcareandhealth">more social care...</a></li>
668
- </ul>
629
+ </ul>
669
630
  </div>
670
631
 
671
632
  <div class="span6">
672
633
  <h3 id="home-council" class="home-header"><a href="/corporate">The Council</a></h3>
673
- <ul class="homepage-links">
674
- <li>
675
- <a href="/jobs">Jobs</a>,</li>
676
- <li>
677
- <a href="/councillors">councillors</a>,</li>
678
- <li>
679
- <a href="/elections">elections</a>,</li>
680
- <li>
681
- <a href="/consultations">consultations</a>,</li>
682
- <li>
683
- <a href="/petitions">petitions</a>,</li>
684
- <li>
685
- <a href="/communityforums">community forums</a>,</li>
686
- <li>
687
- <a href="/volunteering">volunteering</a>,</li>
688
- <li>
689
- <a href="/corporate">find a politician</a>,</li>
634
+ <ul class="homepage-links">
635
+ <li><a href="/jobs">Jobs</a>,</li>
636
+ <li><a href="/councillors">councillors</a>,</li>
637
+ <li><a href="/elections">elections</a>,</li>
638
+ <li><a href="/consultations">consultations</a>,</li>
639
+ <li><a href="/petitions">petitions</a>,</li>
640
+ <li><a href="/communityforums">community forums</a>,</li>
641
+ <li><a href="/volunteering">volunteering</a>,</li>
642
+ <li><a href="/corporate">find a politician</a>,</li>
690
643
  <li><a class="strong" href="/corporate">more council...</a></li>
691
- </ul>
644
+ </ul>
692
645
  </div>
693
646
 
694
647
  <div class="span6">
695
648
  <h3 id="home-audience" class="home-header"><a href="/volunteering">Volunteering</a></h3>
696
- <ul class="homepage-links">
697
- <li>
698
- <a href="/libraryvolunteering">Library volunteering</a>,</li>
699
- <li>
700
- <a href="http://heritage.warwickshire.gov.uk/volunteer/">heritage and culture volunteers</a>,</li>
701
- <li>
702
- <a href="http://countryparks.warwickshire.gov.uk/volunteering/">country parks volunteering</a>,</li>
703
- <li>
704
- <a href="/becomeagovernor/">becoming a school governor</a>,</li>
649
+ <ul class="homepage-links">
650
+ <li><a href="/libraryvolunteering">Library volunteering</a>,</li>
651
+ <li><a href="http://heritage.warwickshire.gov.uk/volunteer/">heritage and culture volunteers</a>,</li>
652
+ <li><a href="http://countryparks.warwickshire.gov.uk/volunteering/">country parks volunteering</a>,</li>
653
+ <li><a href="/becomeagovernor/">becoming a school governor</a>,</li>
705
654
  <li><a class="strong" href="/volunteering">other volunteering opportunities</a></li>
706
- </ul>
655
+ </ul>
707
656
  </div>
708
657
 
709
658
  <div class="span6">
710
659
  <h3 id="home-events" class="home-header"><a href="/events">Events</a></h3>
711
- <ul class="homepage-links">
712
- <li>
713
- <a href="/corporate/EventDbp.nsf/Next+7+days?OpenView&amp;collapseview&amp;Count=30">Upcoming events</a>,</li>
714
- <li>
715
- <a href="/corporate/EventDbP.nsf/Event?OpenForm">add an event</a>,</li>
716
- <li>
717
- <a href="/corporate/EventDbp.nsf/e3169d505c2a8d1080256b0400304bc0/%24searchForm?SearchView">search events</a>,</li>
718
- <li>
719
- <a href="/corporate/EventDbp.nsf/By+Category?OpenView&amp;collapseview&amp;Count=30">events by category</a>,</li>
720
- <li>
721
- <a href="/corporate/EventDbp.nsf/By+Date?openview&amp;collapseview">events by start date</a>,</li>
660
+ <ul class="homepage-links">
661
+ <li><a href="/corporate/EventDbp.nsf/Next+7+days?OpenView&amp;collapseview&amp;Count=30">Upcoming events</a>,</li>
662
+ <li><a href="/corporate/EventDbP.nsf/Event?OpenForm">add an event</a>,</li>
663
+ <li><a href="/corporate/EventDbp.nsf/e3169d505c2a8d1080256b0400304bc0/$searchForm?SearchView">search events</a>,</li>
664
+ <li><a href="/corporate/EventDbp.nsf/By+Category?OpenView&amp;collapseview&amp;Count=30">events by category</a>,</li>
665
+ <li><a href="/corporate/EventDbp.nsf/By+Date?openview&amp;collapseview">events by start date</a>,</li>
722
666
  <li><a class="strong" href="/events">more events...</a></li>
723
- </ul>
724
- </div>
725
- </div>
726
- <hr>
727
- <footer><div class="row">
667
+ </ul>
668
+ </div></div>
669
+ <hr />
670
+ <footer>
671
+ <div class="row">
728
672
  <div class="span3">
729
- <aside id="text-7" class="widget widget_text"><div class="textwidget"><div style="text-align:center;padding-top:5px;">
730
- <img style="width:auto !important;" src="https://www.warwickshire.gov.uk/Web/graphics/Graphics.nsf/graphics/WDlogo/%24file/wdwhitelogo.png" alt="Warwickshire Direct"><img style="width:auto !important;" src="https://www.warwickshire.gov.uk/Web/graphics/Graphics.nsf/graphics/WSWCClogo/%24file/WCC+logo.png" alt="Warwickshire County Council"><img style="width:auto !important;" src="https://www.warwickshire.gov.uk/Web/graphics/Graphics.nsf/graphics/W4Wlogofooter/%24file/w4w-footer.png" alt="Working For Warwickshire">
673
+ <aside id="text-7" class="widget widget_text"> <div class="textwidget"><div style="text-align:center;padding-top:5px;">
674
+ <img style="width:auto !important;" src="https://www.warwickshire.gov.uk/Web/graphics/Graphics.nsf/graphics/WDlogo/$file/wdwhitelogo.png" alt="Warwickshire Direct">
675
+ <img style="width:auto !important;" src="https://www.warwickshire.gov.uk/Web/graphics/Graphics.nsf/graphics/WSWCClogo/$file/WCC+logo.png" alt="Warwickshire County Council">
676
+ <img style="width:auto !important;" src="https://www.warwickshire.gov.uk/Web/graphics/Graphics.nsf/graphics/W4Wlogofooter/$file/w4w-footer.png" alt="Working For Warwickshire">
731
677
  </div></div>
732
- </aside>
733
- </div>
678
+ </aside> </div>
734
679
  <div class="span3">
735
- <aside id="text-3" class="widget widget_text"><h3 class="widget-title">Contact details</h3> <div class="textwidget"><ul>
736
- <li>
737
- <h4>Address</h4>Warwickshire County Council<br>Shire Hall<br>Warwick<br>CV34 4RL<br>
738
- </li>
680
+ <aside id="text-3" class="widget widget_text"><h3 class="widget-title">Contact details</h3> <div class="textwidget"><ul>
681
+ <li><h4>Address</h4>Warwickshire County Council<br />Shire Hall<br />Warwick<br>CV34 4RL<br /></li>
739
682
  <li><a href="/locationmap">Warwick town centre map</a></li>
740
- <li>
741
- <h4>Telephone</h4>01926 410410<br>Mon-Fri: 8am-8pm<br>Sat: 9am-4pm<br>
742
- </li>
683
+ <li><h4>Telephone</h4>01926 410410<br>Mon-Fri: 8am-8pm<br />Sat: 9am-4pm<br /></li>
743
684
  </ul></div>
744
- </aside>
745
- </div>
685
+ </aside> </div>
746
686
  <div class="span2">
747
- <aside id="text-4" class="widget widget_text"><h3 class="widget-title">Further help</h3> <div class="textwidget"><ul>
687
+ <aside id="text-4" class="widget widget_text"><h3 class="widget-title">Further help</h3> <div class="textwidget"><ul>
748
688
  <li><a href="/accessibility">Accessibility</a></li>
749
689
  <li><a href="/cookies">Cookies</a></li>
750
690
  <li><a href="/complaints">Complaints</a></li>
@@ -754,10 +694,9 @@ color:#fff;
754
694
  <li><a href="/disclaimer">Privacy policy, disclaimer and copyright</a></li>
755
695
 
756
696
  </ul></div>
757
- </aside>
758
- </div>
697
+ </aside> </div>
759
698
  <div class="span2">
760
- <aside id="text-5" class="widget widget_text"><h3 class="widget-title">Information for</h3> <div class="textwidget"><ul>
699
+ <aside id="text-5" class="widget widget_text"><h3 class="widget-title">Information for</h3> <div class="textwidget"><ul>
761
700
  <li><a href="/business">Businesses</a></li>
762
701
  <li><a href="/carers">Carers</a></li>
763
702
  <li><a href="/olderpeople">Older people</a></li>
@@ -765,31 +704,29 @@ color:#fff;
765
704
  <li><a href="/staff">Staff and partners</a></li>
766
705
  <li><a href="/childrenandyoungpeople">Young People</a></li>
767
706
  </ul></div>
768
- </aside><aside id="text-9" class="widget widget_text"><div class="textwidget"><script src="http://static.warwickshire.gov.uk/libs/js/wcc/e-services/engage-test.js"></script></div>
769
- </aside>
770
- </div>
707
+ </aside><aside id="text-9" class="widget widget_text"> <div class="textwidget"><script src="http://static.warwickshire.gov.uk/libs/js/wcc/e-services/engage-test.js"></script></div>
708
+ </aside> </div>
771
709
  <div class="span2">
772
- <aside id="text-6" class="widget widget_text"><h3 class="widget-title">Find us on</h3> <div class="textwidget"><ul>
710
+ <aside id="text-6" class="widget widget_text"><h3 class="widget-title">Find us on</h3> <div class="textwidget"><ul>
773
711
  <li><a href="http://www.flickr.com/photos/56273443@N04">Flickr</a></li>
774
712
  <li><a href="http://twitter.com/WarksDirect">Twitter</a></li>
775
713
  <li><a href="http://www.youtube.com/warwickshirecc">YouTube</a></li>
776
714
  <li><a href="http://www.warwickshire.gov.uk/socialnetworking">Other social networks</a></li>
777
715
  </ul></div>
778
- </aside>
779
- </div>
716
+ </aside> </div>
780
717
 
781
718
  </div>
782
719
  <div class="row">
783
720
  <div class="span12" style="text-align:center;">
784
- <p Warwickshire County Council</p>
721
+ <p>&copy; Warwickshire County Council</p>
785
722
  </div>
786
723
  </div>
787
724
  </footer>
788
- </div> <!-- /container -->
725
+ </div> <!-- /container -->
789
726
  <div id="footer-logos-bottom">
790
727
  <div class="container">
791
728
  <ul class="inline">
792
- <li><a href="//www.gov.uk"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/GovUKLogo.png" alt="Gov.uk"></a></li>
729
+ <li><a href="//www.gov.uk"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/GovUKLogo.png" alt="Gov.uk"></a></li>
793
730
  <li><a href="//www.stratford.gov.uk"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/sdclogo.png" alt="Stratford District Council"></a></li>
794
731
  <li><a href="//www.rugby.gov.uk"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/rbclogo.png" alt="Rugby Borough Council"></a></li>
795
732
  <li><a href="//www.nuneatonandbedworth.gov.uk"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/nbbclogo.png" alt="Nuneaton and Bedworth Borough Council"></a></li>
@@ -797,7 +734,7 @@ color:#fff;
797
734
  <li><a href="//www.warwickdc.gov.uk"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/wdc-logo-footer.png" alt="Warwick District Council"></a></li>
798
735
  <li><a href="//www.warwickshire.police.uk"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/warkspollogo.png" alt="Warwickshire Police"></a></li>
799
736
  </ul>
800
- </div>
737
+ </div>
801
738
  </div>
802
739
 
803
740
  <script type="text/javascript">
@@ -806,5 +743,7 @@ var b=document.getElementsByTagName("script")[0];
806
743
  a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0013/5795.js?"+Math.floor(new Date().getTime()/3600000);
807
744
  a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b)}, 1);
808
745
 
809
- </script><!-- Fin. -->
810
- </body></html>
746
+ </script>
747
+ <!-- Fin. -->
748
+ </body>
749
+ </html>