blob: 95d6fa01316b36fb56103cdd157efa7047212685 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
[%# Assumes fixmystreet cobrand is using FMS map template - for bonus points preload all the right map elements. %]
[% map_js = BLOCK %]
<script>
yepnope.addPrefix( 'preload', function ( resource ) {
resource.noexec = true;
return resource;
});
Modernizr.load({
load: [
"preload![% version('/js/OpenLayers.fixmystreet.js') %]",
"preload![% version('/js/map-OpenLayers.js') %]",
"preload![% version('/js/map-bing-ol.js') %]",
"preload![% version('/js/jquery.ba-hashchange.min.js') %]"
]
});
</script>
[% END %]
[% pre_container_extra = PROCESS 'around/postcode_form.html' %]
[% INCLUDE 'header.html', title = '', bodyclass = 'frontpage fullwidthpage' %]
[% IF error %]
<p class="form-error">[% error %]</p>
[% END %]
<div class="tablewrapper">
<div id="front-howto">
[% INCLUDE 'index-steps.html' %]
</div>
<div id="front-recently">
<h2>
[% loc('About stockouts') %]
</h2>
<section class="full-width">
<p>
Explain stockouts here.
</p>
</section>
</div>
</div>
[% INCLUDE 'footer.html' pagefooter = 'yes' %]
|