remote_partial 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +63 -0
- data/Rakefile +40 -0
- data/app/helpers/remote_partial/application_helper.rb +4 -0
- data/app/helpers/remote_partial/host_app_helper.rb +11 -0
- data/app/models/remote_partial/builder.rb +30 -0
- data/app/models/remote_partial/exceptions.rb +24 -0
- data/app/models/remote_partial/partial.rb +57 -0
- data/app/models/remote_partial/resource_manager.rb +66 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20130702072157_create_remote_partial_partials.rb +12 -0
- data/lib/remote_partial/engine.rb +11 -0
- data/lib/remote_partial/version.rb +3 -0
- data/lib/remote_partial.rb +23 -0
- data/lib/tasks/remote_partial_tasks.rake +10 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/javascripts/demos.js +2 -0
- data/test/dummy/app/assets/javascripts/samples.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/assets/stylesheets/demos.css +4 -0
- data/test/dummy/app/assets/stylesheets/samples.css +4 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/demos_controller.rb +18 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/demos_helper.rb +2 -0
- data/test/dummy/app/helpers/samples_helper.rb +2 -0
- data/test/dummy/app/views/demos/_clock.html.erb +6 -0
- data/test/dummy/app/views/demos/_fixed.html.erb +3 -0
- data/test/dummy/app/views/demos/_ruby.html.erb +4 -0
- data/test/dummy/app/views/demos/index.html.erb +7 -0
- data/test/dummy/app/views/demos/show.html.erb +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/remote_partials/_clock.html.erb +1 -0
- data/test/dummy/app/views/remote_partials/_fixed.html.erb +2 -0
- data/test/dummy/app/views/remote_partials/_ruby.html.erb +11 -0
- data/test/dummy/app/views/remote_partials/_wcc.html.erb +810 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/remote_partial.rb +16 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +8 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130703141929_create_remote_partial_partials.remote_partial.rb +13 -0
- data/test/dummy/db/schema.rb +26 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +4200 -0
- data/test/dummy/log/test.log +1397 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/functional/demos_controller_test.rb +20 -0
- data/test/dummy/test/unit/helpers/demos_helper_test.rb +13 -0
- data/test/dummy/test/unit/helpers/samples_helper_test.rb +4 -0
- data/test/dummy/tmp/cache/assets/BE9/0F0/sprockets%2Fb918d6cc641337193b96751002451244 +0 -0
- data/test/dummy/tmp/cache/assets/C2E/4E0/sprockets%2F5b29288e435665a224409e7d76530c95 +0 -0
- data/test/dummy/tmp/cache/assets/CB3/DC0/sprockets%2F157201713d2fd4954447e0bf4d8e853e +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CE3/080/sprockets%2F7d4d7689d6fa8236f0b4848c03ba1215 +0 -0
- data/test/dummy/tmp/cache/assets/CE5/D30/sprockets%2F8c9834a63b25a66203918a75ff56e2ac +0 -0
- data/test/dummy/tmp/cache/assets/D16/E10/sprockets%2Fd5d9c442561ec08a55d5d843a0d9792d +0 -0
- data/test/dummy/tmp/cache/assets/D20/020/sprockets%2F488c2c97fede45c86a62f1aa14554957 +0 -0
- data/test/dummy/tmp/cache/assets/D2E/690/sprockets%2F840591ad233bc7bda28b7f6a2b27c205 +0 -0
- data/test/dummy/tmp/cache/assets/D30/990/sprockets%2F995cc20d042afc03241f58f7d6ca1f02 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D52/430/sprockets%2F6ada07f0c9869f9f35b05fa0988dc717 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/DBB/BE0/sprockets%2Fc6eb578d23a69b5abb056e3abaa5c060 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E02/FA0/sprockets%2Fca8d5771d03e669be1d96acb6beb6cb6 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/fixtures/remote_partial/partials.yml +10 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/remote_partial_test.rb +7 -0
- data/test/test_helper.rb +80 -0
- data/test/unit/remote_partial/builder_test.rb +113 -0
- data/test/unit/remote_partial/exception_test.rb +21 -0
- data/test/unit/remote_partial/partial_test.rb +66 -0
- data/test/unit/remote_partial/resource_manager_test.rb +76 -0
- data/test/unit/remote_partial_test.rb +26 -0
- metadata +291 -0
@@ -0,0 +1,810 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html><body>
|
3
|
+
<p>>
|
4
|
+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en-US"> <![endif]-->
|
5
|
+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en-US"> <![endif]-->
|
6
|
+
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en-US"> <![endif]-->
|
7
|
+
<!--[if gt IE 8]><!--> <!--<![endif]-->
|
8
|
+
</p>
|
9
|
+
<!-- Title -->
|
10
|
+
<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">
|
36
|
+
var _gaq = _gaq || [];
|
37
|
+
_gaq.push(['_setAccount', 'UA-9510501-3']);
|
38
|
+
_gaq.push(['_trackPageview']);
|
39
|
+
(function() {
|
40
|
+
var ga = document.createElement('script');
|
41
|
+
ga.type = 'text/javascript';
|
42
|
+
ga.async = true;
|
43
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
44
|
+
var s = document.getElementsByTagName('script')[0];
|
45
|
+
s.parentNode.insertBefore(ga, s);
|
46
|
+
})();
|
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">
|
53
|
+
jQuery(document).ready(function(){
|
54
|
+
// Each time a link is clicked, this function gets called
|
55
|
+
jQuery('#secondary a').click(function(){
|
56
|
+
// get the url from the link's href
|
57
|
+
var url = this.href;
|
58
|
+
// set the category of event
|
59
|
+
var category = '';
|
60
|
+
// set the event action
|
61
|
+
if (jQuery(this).is('.download')) { var action = 'Downloads and documents'; }
|
62
|
+
else if (jQuery(this).is('.useful-link')) { var action = 'Useful links'; }
|
63
|
+
else if (jQuery(this).is('.ymabii')) { var action = 'You may also be interested in'; }
|
64
|
+
else if (jQuery(this).is('.top-task')) { var action = 'Top tasks'; }
|
65
|
+
else if (jQuery(this).is('.do-it-online')) { var action = 'Do it online'; }
|
66
|
+
else {var action = 'Other actions'; }
|
67
|
+
// get the text of the link itself
|
68
|
+
var label = jQuery(this).text().trim();
|
69
|
+
// track the click itself
|
70
|
+
|
71
|
+
// window.alert('<p>URL: ' + url + ' CATEGORY:' + category + ' ACTION:' + action + ' LABEL:' + label + '</p>');
|
72
|
+
|
73
|
+
_gaq.push(['_trackEvent', category, action, label]);
|
74
|
+
|
75
|
+
});
|
76
|
+
});
|
77
|
+
</script><!--[if lt IE 7]>
|
78
|
+
<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">
|
80
|
+
<div class="navbar-inner">
|
81
|
+
<div class="container">
|
82
|
+
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
83
|
+
<span class="icon-bar"></span>
|
84
|
+
<span class="icon-bar"></span>
|
85
|
+
<span class="icon-bar"></span>
|
86
|
+
</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>
|
88
|
+
<div class="nav-collapse collapse">
|
89
|
+
<nav><ul class="nav">
|
90
|
+
<li><a href="http://news.warwickshire.gov.uk/">News</a></li>
|
91
|
+
<li><a href="/events">Events</a></li>
|
92
|
+
<li><a href="/jobs">Jobs</a></li>
|
93
|
+
<li class=" active"><a href="http://www.warwickshire.gov.uk/">Warwickshire Direct</a></li>
|
94
|
+
<li class=""><a href="/corporate">About the Council</a></li>
|
95
|
+
|
96
|
+
<li class="dropdown">
|
97
|
+
<a href="#" class="dropdown-toggle" data-toggle="dropdown">More <b class="caret"></b></a>
|
98
|
+
<ul class="dropdown-menu">
|
99
|
+
<li><a href="/consultations">Consultations</a></li>
|
100
|
+
<li><a href="/democracy">Democracy</a></li>
|
101
|
+
<li class="divider">
|
102
|
+
<li class="nav-header">Other sites</li>
|
103
|
+
<li><a href="/spp">Staff, Partners and Practitioners</a></li>
|
104
|
+
</ul>
|
105
|
+
</li>
|
106
|
+
</ul></nav>
|
107
|
+
</div>
|
108
|
+
<!--/.nav-collapse -->
|
109
|
+
<div class="nav-collapse collapse pull-right span2" id="right-topbar">
|
110
|
+
<ul class="nav">
|
111
|
+
<li class="dropdown">
|
112
|
+
<a href="/myaccount" class="dropdown-toggle" data-toggle="dropdown">My Account <b class="caret"></b></a>
|
113
|
+
<ul class="dropdown-menu">
|
114
|
+
<li>
|
115
|
+
<a href="/me@wcc">Me@WCC</a>
|
116
|
+
<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
|
+
</li>
|
118
|
+
<li>
|
119
|
+
<a href="/librarylogin">Library account</a>
|
120
|
+
<p class="nav-header" style="font-weight:normal;text-transform:none !important;">Renew and reserve paper books or borrow eBooks</p>
|
121
|
+
</li>
|
122
|
+
<li>
|
123
|
+
<a href="/jobslogin">Jobs</a>
|
124
|
+
<p class="nav-header" style="font-weight:normal;text-transform:none !important;">Apply for roles or setup alerts</p>
|
125
|
+
</li>
|
126
|
+
<li>
|
127
|
+
<a href="/myaccount">Other accounts</a>
|
128
|
+
</li>
|
129
|
+
</ul>
|
130
|
+
</li>
|
131
|
+
</ul>
|
132
|
+
</div>
|
133
|
+
</div>
|
134
|
+
</div>
|
135
|
+
</div>
|
136
|
+
|
137
|
+
<div id="rss-me"></div>
|
138
|
+
|
139
|
+
// relsub_single_rss('#rss-me', 'http://feeds.feedburner.com/alerts-approvedpremisenotice', 5, true, true);
|
140
|
+
?>
|
141
|
+
|
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>
|
144
|
+
<div class="row style-1-gradient" id="top-header">
|
145
|
+
<div class="container">
|
146
|
+
<div class="span12" style="height:100px;">
|
147
|
+
<div class="row">
|
148
|
+
<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>
|
150
|
+
<div class="span9">
|
151
|
+
<div class="row">
|
152
|
+
<div class="span9">
|
153
|
+
<form action="http://search3.openobjects.com/kb5/warwickshire/search/results.page" method="get" name="kbs" class="navbar-form pull-right" id="site-search">
|
154
|
+
<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>
|
156
|
+
</form>
|
157
|
+
</div>
|
158
|
+
</div>
|
159
|
+
<div class="row">
|
160
|
+
<div id="site-tabs" class="span9">
|
161
|
+
<ul class="nav nav-tabs">
|
162
|
+
<li class="tab active"><a href="/home">Residents</a></li>
|
163
|
+
<li class="tab"><a href="/business">Businesses</a></li>
|
164
|
+
<li class="tab"><a href="/corporate">About the council</a></li>
|
165
|
+
</ul>
|
166
|
+
</div>
|
167
|
+
</div>
|
168
|
+
</div>
|
169
|
+
</div>
|
170
|
+
</div>
|
171
|
+
</div>
|
172
|
+
</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;">
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
<div id="feature" class="row style-1">
|
178
|
+
|
179
|
+
<!--Superbox-->
|
180
|
+
<div id="super-box" class="span8">
|
181
|
+
<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>
|
184
|
+
<div class="tabbable tabs-left">
|
185
|
+
<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">
|
195
|
+
<div class="sb-column one">
|
196
|
+
<h3>Report it</h3>
|
197
|
+
</div>
|
198
|
+
</div>
|
199
|
+
|
200
|
+
<div class="sb-row">
|
201
|
+
<div class="sb-column three">
|
202
|
+
<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>
|
204
|
+
</div>
|
205
|
+
</div>
|
206
|
+
<div class="sb-column three">
|
207
|
+
<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>
|
209
|
+
</div>
|
210
|
+
</div>
|
211
|
+
<div class="sb-column three">
|
212
|
+
<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>
|
214
|
+
</div>
|
215
|
+
</div>
|
216
|
+
</div>
|
217
|
+
|
218
|
+
<div class="sb-row">
|
219
|
+
<!--
|
220
|
+
<div class="sb-column three">
|
221
|
+
<div class="sb-icon-button">
|
222
|
+
<a href="http://www.warwickshire.gov.uk/carclear"><img title="Report Abandoned vehicles" alt="Report Abandoned vehicles" src="/Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/$file/abandonedvehicles.png"><p>Abandoned vehicles</p></a>
|
223
|
+
</div>
|
224
|
+
</div>
|
225
|
+
<div class="sb-column three">
|
226
|
+
<div class="sb-icon-button">
|
227
|
+
<a href="http://www.warwickshire.gov.uk/streetlightingfault"><img title="Report Streetlight faults" alt="Report Streetlight faults" src="/Web/corporate/wccweb.nsf/Links/B6876CFE9798941F80257855005D6E89/$file/streetlight.png"><p>Streetlight faults</p></a>
|
228
|
+
</div>
|
229
|
+
</div>
|
230
|
+
-->
|
231
|
+
<div class="sb-column three">
|
232
|
+
<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>
|
234
|
+
</div>
|
235
|
+
</div>
|
236
|
+
<div class="sb-column three">
|
237
|
+
<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>
|
239
|
+
</div>
|
240
|
+
</div>
|
241
|
+
|
242
|
+
<div class="sb-column three">
|
243
|
+
<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>
|
245
|
+
</div>
|
246
|
+
</div>
|
247
|
+
</div>
|
248
|
+
</div>
|
249
|
+
<div class="tab-pane" id="tab-2"><div class="sb-row">
|
250
|
+
<div class="sb-column one">
|
251
|
+
<h3>Your library</h3>
|
252
|
+
<h4>Search the library catalogue for books, CDs and DVDs.</h4>
|
253
|
+
|
254
|
+
<div id="libraries-nav-search">
|
255
|
+
|
256
|
+
<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>
|
258
|
+
</form>
|
259
|
+
|
260
|
+
</div>
|
261
|
+
|
262
|
+
<ul>
|
263
|
+
<li><a href="/renew">Renew your library items</a></li>
|
264
|
+
<li><a href="/findalibrary">Find a library</a></li>
|
265
|
+
<li><a href="/jointhelibrary">Join the library</a></li>
|
266
|
+
</ul>
|
267
|
+
</div>
|
268
|
+
|
269
|
+
</div></div>
|
270
|
+
<div class="tab-pane" id="tab-3"> <div class="sb-row">
|
271
|
+
<div class="sb-column two">
|
272
|
+
<h3>Latest jobs</h3>
|
273
|
+
<ul>
|
274
|
+
<li>The council jobs feed will be back shortly</li>
|
275
|
+
<li>Apologies for the inconvenience</li>
|
276
|
+
</ul>
|
277
|
+
<h5><a href="http://www.wmjobs.co.uk/careers/list.aspx?ID=QUVFK026203F3VBQB7V8NV45Y&mask=wmj&LG=UK&statlog=1&Resultsperpage=10&LOV1=All&LOV45=All&LOV10=All&SUBDEPT1=1300">More council jobs...</a></h5>
|
278
|
+
</div>
|
279
|
+
<div class="sb-column two">
|
280
|
+
<h3>Job links</h3>
|
281
|
+
<ul>
|
282
|
+
<li><a href="http://www.wmjobs.co.uk/careers/list.aspx?ID=QUVFK026203F3VBQB7V8NV45Y&mask=wmj&LG=UK&statlog=1&Resultsperpage=10&LOV1=All&LOV45=All&LOV10=All&SUBDEPT1=1300">All council jobs</a></li>
|
283
|
+
<li><a href="http://www.wmjobs.co.uk/careers/list.aspx?ID=QUVFK026203F3VBQB7V8NV45Y&mask=wmj&LG=UK&statlog=1&Resultsperpage=10&LOV1=15644&LOV45=All&LOV10=All&SUBDEPT1=396">All teaching jobs</a></li>
|
284
|
+
<li><a href="http://www.wmjobs.co.uk/careers/searchagent.aspx">Job alerts</a></li>
|
285
|
+
<li><a href="http://www.wmjobs.co.uk/our-employers/warwickshire-county-council/">How to apply</a></li>
|
286
|
+
<li><a href="http://www.warwickshire.gov.uk/applicantinfo">Guidance for applicants</a></li>
|
287
|
+
<li><a href="http://www.wmjobs.co.uk/our-employers/warwickshire-county-council/">Working for the council</a></li>
|
288
|
+
<li><a href="/careers">Careers</a></li>
|
289
|
+
</ul>
|
290
|
+
</div>
|
291
|
+
|
292
|
+
</div>
|
293
|
+
</div>
|
294
|
+
<div class="tab-pane" id="tab-4"> <div class="sb-row">
|
295
|
+
<div class="sb-column one">
|
296
|
+
<h3>Plan your journey</h3>
|
297
|
+
<p>Enter your post-code, location or town.</p>
|
298
|
+
|
299
|
+
|
300
|
+
<form method="post" action="http://www.travelinesw.com/swe/XSLT_TRIP_REQUEST2" id="efaForm" name="">
|
301
|
+
|
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>
|
303
|
+
<input class="form-input" type="text" name="name_origin" placeholder="From:"></p>
|
304
|
+
<p><span class="form-label">To:</span>
|
305
|
+
<input class="form-input" type="text" name="name_destination" placeholder="To:"></p>
|
306
|
+
<button type="submit" value="Search" class="btn btn-3">Submit</button>
|
307
|
+
</form>
|
308
|
+
|
309
|
+
</div>
|
310
|
+
</div>
|
311
|
+
<div class="sb-row">
|
312
|
+
<div class="sb-column two">
|
313
|
+
<ul>
|
314
|
+
<li><a href="/corporate/BusTime.nsf/f6ba0a2f0063538180256d40003b1059/%24searchForm?SearchView">Find a bus timetable</a></li>
|
315
|
+
<li><a href="/busroutemaps">Bus route maps</a></li>
|
316
|
+
</ul>
|
317
|
+
</div>
|
318
|
+
<div class="sb-column two">
|
319
|
+
<ul>
|
320
|
+
<li><a href="/busservicechanges">Bus route changes</a></li>
|
321
|
+
<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">
|
327
|
+
<div class="sb-column one">
|
328
|
+
<h3>Your school</h3>
|
329
|
+
</div>
|
330
|
+
</div>
|
331
|
+
|
332
|
+
<div class="sb-row">
|
333
|
+
<div class="sb-column two">
|
334
|
+
<p>Term ends</p>
|
335
|
+
<div class="date-box">
|
336
|
+
<p>Friday 19th July*</p>
|
337
|
+
</div>
|
338
|
+
</div>
|
339
|
+
<div class="sb-column two">
|
340
|
+
<p>Next term starts:</p>
|
341
|
+
<div class="date-box">
|
342
|
+
<p>Monday 2nd September*</p>
|
343
|
+
</div>
|
344
|
+
</div>
|
345
|
+
</div>
|
346
|
+
|
347
|
+
<div class="sb-row">
|
348
|
+
<div class="sb-column three">
|
349
|
+
<ul>
|
350
|
+
<li><a href="/schoolholidaydates">Term dates</a></li>
|
351
|
+
<li><a href="/admissions">Admissions</a></li>
|
352
|
+
</ul>
|
353
|
+
</div>
|
354
|
+
<div class="sb-column three">
|
355
|
+
<ul>
|
356
|
+
<li><a href="/schoolclosures">Closures</a></li>
|
357
|
+
<li><a href="/schools">More schools</a></li>
|
358
|
+
</ul>
|
359
|
+
</div>
|
360
|
+
<div class="sb-column three">
|
361
|
+
<ul>
|
362
|
+
<li><a href="/schoolfinder">Find a school</a></li>
|
363
|
+
</ul>
|
364
|
+
</div>
|
365
|
+
</div>
|
366
|
+
|
367
|
+
<div class="sb-row">
|
368
|
+
<div class="sb-column one">
|
369
|
+
<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
|
+
</div>
|
371
|
+
</div>
|
372
|
+
</div>
|
373
|
+
<div class="tab-pane" id="tab-6"><div class="sb-row">
|
374
|
+
<div id="sb-twitter-accounts" class="sb-column two">
|
375
|
+
<h3>Social networking</h3>
|
376
|
+
<ul>
|
377
|
+
<li><a href="http://twitter.com/wcc_news">Warwickshire news</a></li>
|
378
|
+
<li><a href="http://twitter.com/WarksFireRescue">Fire and rescue</a></li>
|
379
|
+
<li><a href="http://twitter.com/OisinTheDeer">Museums</a></li>
|
380
|
+
<li><a href="http://twitter.com/warksdirect">Warwickshire Direct</a></li>
|
381
|
+
<li><a href="http://twitter.com/wcc_schools">Schools</a></li>
|
382
|
+
<li><a href="http://twitter.com/warkslibraries">Warwickshire Libraries</a></li>
|
383
|
+
<li><a href="http://twitter.com/countryparks">Country parks</a></li>
|
384
|
+
<li><a href="/socialnetworking">All social media accounts</a></li>
|
385
|
+
</ul>
|
386
|
+
</div>
|
387
|
+
<div id="sb-twitter-list" class="sb-column two">
|
388
|
+
<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>
|
391
|
+
</div></div>
|
392
|
+
</div>
|
393
|
+
|
394
|
+
</div>
|
395
|
+
|
396
|
+
</div>
|
397
|
+
<!--end span8 SuperBox-->
|
398
|
+
|
399
|
+
<!--Newsbox-->
|
400
|
+
<div id="nb" class="span4">
|
401
|
+
<h2>Latest News</h2>
|
402
|
+
<div id="featured-slider" class="carousel slide" height="300px">
|
403
|
+
<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>
|
406
|
+
</div>
|
407
|
+
<noscript>
|
408
|
+
<p>Can't see our stories? It may be because JavaScript is turned off in your browser.</p>
|
409
|
+
<p>To view our stories without JavaScript enabled, you can visit our <a href="//news.warwickshire.gov.uk">Warwickshire News</a> site.</p>
|
410
|
+
</noscript>
|
411
|
+
<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-->
|
414
|
+
|
415
|
+
</div>
|
416
|
+
<!--end of feature area-->
|
417
|
+
|
418
|
+
<div class="row">
|
419
|
+
<style>
|
420
|
+
/*7662 - 7682 replace block - fixes border issue in IE by removing it*/
|
421
|
+
.style-1 .sb-icon-button, .style-2 .sb-icon-button, .style-3 .sb-icon-button {
|
422
|
+
width: 100%;
|
423
|
+
display: block;
|
424
|
+
margin: 0 auto;
|
425
|
+
margin-bottom: 15px;
|
426
|
+
text-align: center;
|
427
|
+
padding: 2.5px;
|
428
|
+
border:none;
|
429
|
+
}
|
430
|
+
|
431
|
+
.style-1 .sb-icon-button:hover, .style-2 .sb-icon-button:hover, .style-3 .sb-icon-button:hover{
|
432
|
+
background-color:rgb(200,225,200);
|
433
|
+
-moz-box-shadow:0px 0px 3px rgba(0,0,0,0.9);
|
434
|
+
-webkit-box-shadow:0px 0px 3px rgba(0,0,0,0.9);
|
435
|
+
box-shadow:0px 0px 3px rgba(0,0,0,0.9);
|
436
|
+
border:none;
|
437
|
+
}
|
438
|
+
/*End of block*/
|
439
|
+
|
440
|
+
/*Add new somewhere - gives the superbox and newsbox a light border*/
|
441
|
+
#super-box .tabbable, #featured-slider {
|
442
|
+
border:1px solid rgb(230,230,230);
|
443
|
+
}
|
444
|
+
|
445
|
+
.lt-ie9 #super-box .tabbable, .lt-ie9 #featured-slider {
|
446
|
+
border:1px solid rgb(200,200,200);
|
447
|
+
}
|
448
|
+
|
449
|
+
/*7754 replace block - removes transparent background*/
|
450
|
+
#nb h2 {
|
451
|
+
position:absolute;
|
452
|
+
display:block;
|
453
|
+
float:left;
|
454
|
+
z-index:1;
|
455
|
+
top:10px;
|
456
|
+
margin:0;
|
457
|
+
padding: 10px;
|
458
|
+
padding-left: 20px;
|
459
|
+
background: #fff;
|
460
|
+
background-color: #fff;
|
461
|
+
box-shadow: 1px 1px 4px rgba(0, 0, 0, .3);
|
462
|
+
-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
|
463
|
+
-moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
|
464
|
+
line-height: 1em;
|
465
|
+
font-size: 20px;
|
466
|
+
}
|
467
|
+
|
468
|
+
/*7790*/
|
469
|
+
#nb h2:hover {
|
470
|
+
padding-left: 25px;
|
471
|
+
background-color: #fff;
|
472
|
+
transition: 0.5s background 0s linear, 0.2s padding 0s linear;
|
473
|
+
-webkit-transition: 0.2s background 0s linear, 0.2s padding 0s linear;
|
474
|
+
-moz-transition: 0.2s background 0s linear, 0.2s padding 0s linear;
|
475
|
+
}
|
476
|
+
|
477
|
+
/*change color line to fix hover on IE*/
|
478
|
+
.lt-ie9 .style-1 ul#super-menu li a:hover, .lt-ie9 .style-2 ul#super-menu li a:hover, .lt-ie9 .style-3 ul#super-menu li a:hover{
|
479
|
+
color:#fff;
|
480
|
+
}
|
481
|
+
|
482
|
+
/*Tabs on ei10*/
|
483
|
+
|
484
|
+
.style-1 #super-box .tab-content .tab-pane, .style-2 #super-box .tab-content .tab-pane, .style-3 #super-box .tab-content .tab-pane,{
|
485
|
+
height:300px;
|
486
|
+
}
|
487
|
+
|
488
|
+
.style-1 #super-box .tab-content, .style-2 #super-box .tab-content, .style-3 #super-box .tab-content {
|
489
|
+
height:300px;
|
490
|
+
}
|
491
|
+
|
492
|
+
|
493
|
+
</style>
|
494
|
+
<div class="span6">
|
495
|
+
<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>
|
509
|
+
<li><a class="strong" href="/business">more business...</a></li>
|
510
|
+
</ul>
|
511
|
+
</div>
|
512
|
+
|
513
|
+
<div class="span6">
|
514
|
+
<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>
|
526
|
+
<li><a class="strong" href="/environment">more environment...</a></li>
|
527
|
+
</ul>
|
528
|
+
</div>
|
529
|
+
|
530
|
+
<div class="span6">
|
531
|
+
<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>
|
545
|
+
<li><a class="strong" href="/healthandwellbeing">more health...</a></li>
|
546
|
+
</ul>
|
547
|
+
</div>
|
548
|
+
|
549
|
+
<div class="span6">
|
550
|
+
<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>
|
564
|
+
<li><a class="strong" href="/librariesandleisure">more leisure...</a></li>
|
565
|
+
</ul>
|
566
|
+
</div>
|
567
|
+
|
568
|
+
<div class="span6">
|
569
|
+
<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>
|
581
|
+
<li><a class="strong" href="/registrations">more registrations...</a></li>
|
582
|
+
</ul>
|
583
|
+
</div>
|
584
|
+
|
585
|
+
<div class="span6">
|
586
|
+
<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>
|
604
|
+
|
605
|
+
|
606
|
+
|
607
|
+
|
608
|
+
<li><a class="strong" href="/roadsandtravel">more roads and travel...</a></li>
|
609
|
+
</ul>
|
610
|
+
</div>
|
611
|
+
|
612
|
+
<div class="span6">
|
613
|
+
<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>
|
627
|
+
<li><a class="strong" href="/safetyandcrime">more safety and crime...</a></li>
|
628
|
+
</ul>
|
629
|
+
</div>
|
630
|
+
|
631
|
+
<div class="span6">
|
632
|
+
<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>
|
646
|
+
<li><a class="strong" href="/schoolsandlearning">more schools and learning...</a></li>
|
647
|
+
</ul>
|
648
|
+
</div>
|
649
|
+
|
650
|
+
<div class="span6">
|
651
|
+
<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 & 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>
|
667
|
+
<li><a class="strong" href="/socialcareandhealth">more social care...</a></li>
|
668
|
+
</ul>
|
669
|
+
</div>
|
670
|
+
|
671
|
+
<div class="span6">
|
672
|
+
<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>
|
690
|
+
<li><a class="strong" href="/corporate">more council...</a></li>
|
691
|
+
</ul>
|
692
|
+
</div>
|
693
|
+
|
694
|
+
<div class="span6">
|
695
|
+
<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>
|
705
|
+
<li><a class="strong" href="/volunteering">other volunteering opportunities</a></li>
|
706
|
+
</ul>
|
707
|
+
</div>
|
708
|
+
|
709
|
+
<div class="span6">
|
710
|
+
<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&collapseview&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&collapseview&Count=30">events by category</a>,</li>
|
720
|
+
<li>
|
721
|
+
<a href="/corporate/EventDbp.nsf/By+Date?openview&collapseview">events by start date</a>,</li>
|
722
|
+
<li><a class="strong" href="/events">more events...</a></li>
|
723
|
+
</ul>
|
724
|
+
</div>
|
725
|
+
</div>
|
726
|
+
<hr>
|
727
|
+
<footer><div class="row">
|
728
|
+
<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">
|
731
|
+
</div></div>
|
732
|
+
</aside>
|
733
|
+
</div>
|
734
|
+
<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>
|
739
|
+
<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>
|
743
|
+
</ul></div>
|
744
|
+
</aside>
|
745
|
+
</div>
|
746
|
+
<div class="span2">
|
747
|
+
<aside id="text-4" class="widget widget_text"><h3 class="widget-title">Further help</h3> <div class="textwidget"><ul>
|
748
|
+
<li><a href="/accessibility">Accessibility</a></li>
|
749
|
+
<li><a href="/cookies">Cookies</a></li>
|
750
|
+
<li><a href="/complaints">Complaints</a></li>
|
751
|
+
<li><a href="/consultations">Consultations</a></li>
|
752
|
+
<li><a href="/customerservice">Customer service</a></li>
|
753
|
+
<li><a href="/apps">Mobile apps</a></li>
|
754
|
+
<li><a href="/disclaimer">Privacy policy, disclaimer and copyright</a></li>
|
755
|
+
|
756
|
+
</ul></div>
|
757
|
+
</aside>
|
758
|
+
</div>
|
759
|
+
<div class="span2">
|
760
|
+
<aside id="text-5" class="widget widget_text"><h3 class="widget-title">Information for</h3> <div class="textwidget"><ul>
|
761
|
+
<li><a href="/business">Businesses</a></li>
|
762
|
+
<li><a href="/carers">Carers</a></li>
|
763
|
+
<li><a href="/olderpeople">Older people</a></li>
|
764
|
+
<li><a href="/parents">Parents and guardians</a></li>
|
765
|
+
<li><a href="/staff">Staff and partners</a></li>
|
766
|
+
<li><a href="/childrenandyoungpeople">Young People</a></li>
|
767
|
+
</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>
|
771
|
+
<div class="span2">
|
772
|
+
<aside id="text-6" class="widget widget_text"><h3 class="widget-title">Find us on</h3> <div class="textwidget"><ul>
|
773
|
+
<li><a href="http://www.flickr.com/photos/56273443@N04">Flickr</a></li>
|
774
|
+
<li><a href="http://twitter.com/WarksDirect">Twitter</a></li>
|
775
|
+
<li><a href="http://www.youtube.com/warwickshirecc">YouTube</a></li>
|
776
|
+
<li><a href="http://www.warwickshire.gov.uk/socialnetworking">Other social networks</a></li>
|
777
|
+
</ul></div>
|
778
|
+
</aside>
|
779
|
+
</div>
|
780
|
+
|
781
|
+
</div>
|
782
|
+
<div class="row">
|
783
|
+
<div class="span12" style="text-align:center;">
|
784
|
+
<p>© Warwickshire County Council</p>
|
785
|
+
</div>
|
786
|
+
</div>
|
787
|
+
</footer>
|
788
|
+
</div> <!-- /container -->
|
789
|
+
<div id="footer-logos-bottom">
|
790
|
+
<div class="container">
|
791
|
+
<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>
|
793
|
+
<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
|
+
<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
|
+
<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>
|
796
|
+
<li><a href="//www.northwarks.gov.uk"><img src="http://www.warwickshire.gov.uk/wp-content/themes/gamma/images/nwbc-small-footer.png" alt="North Warwickshire Borough Council"></a></li>
|
797
|
+
<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
|
+
<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
|
+
</ul>
|
800
|
+
</div>
|
801
|
+
</div>
|
802
|
+
|
803
|
+
<script type="text/javascript">
|
804
|
+
setTimeout(function(){var a=document.createElement("script");
|
805
|
+
var b=document.getElementsByTagName("script")[0];
|
806
|
+
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0013/5795.js?"+Math.floor(new Date().getTime()/3600000);
|
807
|
+
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b)}, 1);
|
808
|
+
|
809
|
+
</script><!-- Fin. -->
|
810
|
+
</body></html>
|