Skip to content

Commit 585e03c

Browse files
committed
mise en place images + caroussel
1 parent de10e2d commit 585e03c

24 files changed

+3998
-10
lines changed
+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<!DOCTYPE HTML>
2+
<html>
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5+
<title>{% block title %}GS{% endblock %} </title>
6+
{% block stylesheets %}
7+
<link rel="stylesheet" href="{{ asset('css/style.css') }}" type="text/css" />
8+
<link rel="stylesheet" href="{{ asset('css/menu.css') }}" type="text/css" />
9+
<link href="http://fonts.googleapis.com/css?family=Rokkitt:400,700" rel="stylesheet" type="text/css">
10+
11+
{% endblock %}
12+
{% block javascripts %}
13+
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
14+
<script src="http://gsgd.co.uk/sandbox/jquery/easing/jquery.easing.1.3.js"></script>
15+
<script type="text/javascript" src="{{ asset ('js/fish/hoverIntent.js') }}" ></script>
16+
<script type="text/javascript" src="{{ asset ('js/fish/superfish.js') }}" ></script>
17+
<!-- <script type="text/javascript" href="{{ asset('js/style.css') }}"></script>-->
18+
{% endblock %}
19+
<script>
20+
$(function(){
21+
{% block jquery %}
22+
{% endblock %}
23+
jQuery('ul.sf-menu').superfish();
24+
});
25+
26+
</script>
27+
28+
</head>
29+
30+
<body>
31+
<div id="wrapper_outer">
32+
<div id="top">
33+
<div id="topC">
34+
<div id="insurance1"> </div>
35+
<div id="insurance2"></div>
36+
</div>
37+
</div>
38+
39+
<div id="header">
40+
<div id="headerC">
41+
<img src="{{asset('img/gslogo.png')}}" width="961" height="138" >
42+
</div>
43+
</div>
44+
45+
<div id="content">
46+
{% block content %}GS{% endblock %}
47+
</div>
48+
<div id="footer"> <!-- changer en <footer> -->
49+
<div id="bottombar"><div id="bot"> <img src="{{asset('img/newsletter.gif')}}" width="966" height="64"> </div> </div>
50+
<div id="credits"><div id="bot"> <img src="{{asset('img/credits.gif')}}" width="962" height="53"> </div> </div>
51+
</div>
52+
</div>
53+
</body>
54+
</html>

app/Resources/views/layout.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
{% block jquery %}
2222
{% endblock %}
2323
jQuery('ul.sf-menu').superfish();
24-
});
24+
});
2525
2626
</script>
2727

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?php return unserialize('a:0:{}');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?php return unserialize('a:0:{}');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?php return unserialize('a:0:{}');

app/cache/dev/profiler.db

3.45 MB
Binary file not shown.

app/cache/dev/twig/00/73/7b42fbfaf5def5d55d8ff2438741.php

+180-6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ public function __construct(Twig_Environment $env)
99

1010
$this->blocks = array(
1111
'title' => array($this, 'block_title'),
12+
'javascripts' => array($this, 'block_javascripts'),
13+
'jquery' => array($this, 'block_jquery'),
14+
'stylesheets' => array($this, 'block_stylesheets'),
1215
'sdzblog_body' => array($this, 'block_sdzblog_body'),
1316
'content' => array($this, 'block_content'),
1417
);
@@ -34,17 +37,59 @@ public function block_title($context, array $blocks = array())
3437
";
3538
}
3639

37-
// line 120
40+
// line 7
41+
public function block_javascripts($context, array $blocks = array())
42+
{
43+
// line 8
44+
echo "\t ";
45+
$this->displayParentBlock("javascripts", $context, $blocks);
46+
echo "
47+
<script type=\"text/javascript\" src=\"";
48+
// line 9
49+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/js/slides.min.jquery.js"), "html", null, true);
50+
echo "\" ></script>
51+
";
52+
}
53+
54+
// line 12
55+
public function block_jquery($context, array $blocks = array())
56+
{
57+
// line 13
58+
echo " \$('#slides').slides({
59+
preload: true,
60+
preloadImage: 'img/loading.gif',
61+
play: 5000,
62+
pause: 2500,
63+
hoverPause: true
64+
});
65+
";
66+
}
67+
68+
// line 22
69+
public function block_stylesheets($context, array $blocks = array())
70+
{
71+
// line 23
72+
echo "\t ";
73+
$this->displayParentBlock("stylesheets", $context, $blocks);
74+
echo "
75+
<link rel=\"stylesheet\" href=\"";
76+
// line 24
77+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/css/styleIndex.css"), "html", null, true);
78+
echo "\" type=\"text/css\" />
79+
";
80+
}
81+
82+
// line 239
3883
public function block_sdzblog_body($context, array $blocks = array())
3984
{
40-
// line 121
85+
// line 240
4186
echo "\t";
4287
}
4388

44-
// line 7
89+
// line 27
4590
public function block_content($context, array $blocks = array())
4691
{
47-
// line 8
92+
// line 28
4893
echo "</br>
4994
<div id=\"gradient\">
5095
<div id=\"menu\">
@@ -155,12 +200,141 @@ public function block_content($context, array $blocks = array())
155200
</div>
156201
</div>
157202
203+
<div id=\"example\">
204+
<div id=\"slides\">
205+
<div class=\"slides_container\">
206+
<a href=\"http://www.flickr.com/photos/jliba/4665625073/\" title=\"145.365 - Happy Bokeh Thursday! | Flickr - Photo Sharing!\" target=\"_blank\"><img src=\"http://slidesjs.com/examples/standard/img/slide-1.jpg\" width=\"570\" height=\"270\" alt=\"Slide 1\"></a>
207+
<a href=\"http://www.flickr.com/photos/stephangeyer/3020487807/\" title=\"Taxi | Flickr - Photo Sharing!\" target=\"_blank\"><img src=\"http://slidesjs.com/examples/standard/img/slide-2.jpg\" width=\"570\" height=\"270\" alt=\"Slide 2\"></a>
208+
<a href=\"http://www.flickr.com/photos/childofwar/2984345060/\" title=\"Happy Bokeh raining Day | Flickr - Photo Sharing!\" target=\"_blank\"><img src=\"http://slidesjs.com/examples/standard/img/slide-3.jpg\" width=\"570\" height=\"270\" alt=\"Slide 3\"></a>
209+
<a href=\"http://www.flickr.com/photos/b-tal/117037943/\" title=\"We Eat Light | Flickr - Photo Sharing!\" target=\"_blank\"><img src=\"http://slidesjs.com/examples/standard/img/slide-4.jpg\" width=\"570\" height=\"270\" alt=\"Slide 4\"></a>
210+
<a href=\"http://www.flickr.com/photos/bu7amd/3447416780/\" title=\"�I must go down to the sea again, to the lonely sea and the sky; and all I ask is a tall ship and a star to steer her by.� | Flickr - Photo Sharing!\" target=\"_blank\"><img src=\"http://slidesjs.com/examples/standard/img/slide-5.jpg\" width=\"570\" height=\"270\" alt=\"Slide 5\"></a>
211+
<a href=\"http://www.flickr.com/photos/streetpreacher/2078765853/\" title=\"twelve.inch | Flickr - Photo Sharing!\" target=\"_blank\"><img src=\"http://slidesjs.com/examples/standard/img/slide-6.jpg\" width=\"570\" height=\"270\" alt=\"Slide 6\"></a>
212+
<a href=\"http://www.flickr.com/photos/aftab/3152515428/\" title=\"Save my love for loneliness | Flickr - Photo Sharing!\" target=\"_blank\"><img src=\"http://slidesjs.com/examples/standard/img/slide-7.jpg\" width=\"570\" height=\"270\" alt=\"Slide 7\"></a>
213+
</div>
214+
<a href=\"#\" class=\"prev\"><img src=\"";
215+
// line 149
216+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/images/arrow-prev.png"), "html", null, true);
217+
echo "\" width=\"24\" height=\"43\" alt=\"Arrow Prev\"></a>
218+
<a href=\"#\" class=\"next\"><img src=\"";
219+
// line 150
220+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/images/arrow-next.png"), "html", null, true);
221+
echo "\" width=\"24\" height=\"43\" alt=\"Arrow Next\"></a>
222+
</div>
223+
<img src=\"";
224+
// line 152
225+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/images/example-frame.png"), "html", null, true);
226+
echo "\" width=\"739\" height=\"341\" alt=\"Example Frame\" id=\"frame\">
227+
</div>
228+
229+
<div id=\"intro\">
230+
<div class=\"title\">Realistic Outcome</div>
231+
<p>A very warm welcome to our website. We provide innovative solutions in insurance and finance for our corporate and commercial sector clients that add real calue by delivering more for a great deal less.</p>
158232
233+
</div>
234+
<img src=\"";
235+
// line 160
236+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/images/news.png"), "html", null, true);
237+
echo "\" width=\"853\" height=\"44\" id=\"separator\">
238+
</br>
239+
</br>
240+
<div id=\"news\">
241+
<div class=\"title\">Winter Driving</div>
242+
<div class=\"subtitle\">Posted by Jeffrey Hill on February 22, 2012 at 10:10 AM</div>
243+
</br>
244+
<img src=\"";
245+
// line 167
246+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/images/winte2r.jpg"), "html", null, true);
247+
echo "\" width=\"615\" height=\"158\" style=\"margin-left: 25px;\">
248+
</br>
249+
</br>
250+
The financial system consists of public and private interests and the markets that serve them. It provides capital from individual and institutional investors who transfer money directly and through intermediaries (e.g. banks, insurance companies
251+
Brokerage and fund management firms) to other individuals, firms, and governments that acquire resources and transact business. With the expectation of reaping profits, investors fund credit in the The financial system consists of public and private interests and the markets that serve them.</br>
252+
</br></br><img src=\"http://slidesjs.com/examples/standard/img/slide-2.jpg\" width=\"570\" height=\"270\" alt=\"Slide 2\" style=\"margin-left: 50px;\"> </br></br>It provides capital from individual
253+
and institutional investors who transfer money directly and through intermediaries (e.g. banks, insurance companies ,
254+
Brokerage and fund management firms) to other individuals, firms, and governments that acquire resources and transact business. With the expectation of reaping Il etait une fois un méchant petit lapin qui aimait bien se sentir à son aise dans les différentes partie de son corps. Pour cela il lui fallait une chose essentielle.
255+
</br></br>Tyres</br>
256+
Ensure your tyres are inflated correctly and that you have
257+
sufficient tread on your tyres to cope with wet and slippery
258+
conditions.</br>
259+
</br>Battery</br>
260+
In winter, the battery will run down quicker. Make sure you do
261+
a regular long journey to top it up.</br>
262+
</br>Engine</br>
263+
Modern engines are more robust than older ones. All the
264+
same, depress the clutch when starting the vehicle as this will
265+
reduce drag on the engine and preserve the battery.</br>
266+
</br>Screenwash</br>
267+
Keep this topped up and use an additive at the right
268+
concentration to prevent it freezing.</br>
269+
</br>Fuel</br>
270+
Keep your tank topped up - that way if you are caught out,
271+
you’ll have enough fuel to make it home or run the engine
272+
to keep warm. However, it’s essential to keep snow from
273+
blocking the exhaust as noxious fumes can leak into the
274+
vehicle</br>
275+
</br></br></br>
276+
<div class=\"title\">12 Days of Christmas Safety</div>
277+
<div class=\"subtitle\">Posted by Jeffrey Hill on February 22, 2012 at 10:10 AM</div>
278+
</br>
279+
<img src=\"";
280+
// line 199
281+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/images/winte2r.jpg"), "html", null, true);
282+
echo "\" width=\"615\" height=\"158\" style=\"margin-left: 25px;\">
283+
</br>
284+
</br>
285+
The financial system consists of public and private interests and the markets that serve them. It provides capital from individual and institutional investors who transfer money directly and through intermediaries (e.g. banks, insurance companies
286+
Brokerage and fund management firms) to other individuals, firms, and governments that acquire resources and transact business. With the expectation of reaping profits, investors fund credit in the The financial system consists of public and private interests and the markets that serve them.</br>
287+
</br></br><img src=\"http://slidesjs.com/examples/standard/img/slide-4.jpg\" width=\"570\" height=\"270\" alt=\"Slide 4\" style=\"margin-left: 50px;\"> </br></br>It provides capital from individual
288+
and institutional investors who transfer money directly and through intermediaries (e.g. banks, insurance companies ,
289+
Brokerage and fund management firms) to other individuals, firms, and governments that acquire resources and transact business. With the expectation of reaping Il etait une fois un méchant petit lapin qui aimait bien se sentir à son aise dans les différentes partie de son corps. Pour cela il lui fallait une chose essentielle.
290+
</br></br>Tyres</br>
291+
Ensure your tyres are inflated correctly and that you have
292+
sufficient tread on your tyres to cope with wet and slippery
293+
conditions.</br>
294+
</br>Battery</br>
295+
In winter, the battery will run down quicker. Make sure you do
296+
a regular long journey to top it up.</br></br></br>
297+
298+
</div>
299+
300+
<div id=\"right\">
301+
<img src=\"";
302+
// line 218
303+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/images/lastNews.png"), "html", null, true);
304+
echo "\" width=\"157\" height=\"42\" id=\"lastN\">
305+
</br></br>
306+
Winter Driving
307+
</br></br>
308+
12 days of Christmas Safety
309+
</br></br>
310+
New Glasgow office opens
311+
</br></br>
312+
Quinn Insurance
313+
</br></br></br></br></br></br></br>
314+
<img src=\"";
315+
// line 228
316+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/images/partners.png"), "html", null, true);
317+
echo "\" width=\"156\" height=\"37\" id=\"lastN\">
318+
</br></br></br>
319+
<img src=\"";
320+
// line 230
321+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/images/cherry.png"), "html", null, true);
322+
echo "\" width=\"138\" height=\"56\"></br></br></br>
323+
<img src=\"";
324+
// line 231
325+
echo twig_escape_filter($this->env, $this->env->getExtension('assets')->getAssetUrl("bundles/gsblog/images/biba.png"), "html", null, true);
326+
echo "\" width=\"68\" height=\"109\" ></br>
327+
</br>
328+
</br></br></br></br></br></br></br></br></br></br></br></br></br></br>
329+
</div>
330+
331+
<div class=\"clear\"></div>
332+
159333
\t";
160-
// line 120
334+
// line 239
161335
echo "\t";
162336
$this->displayBlock('sdzblog_body', $context, $blocks);
163-
// line 122
337+
// line 241
164338
echo "
165339
";
166340
}

app/cache/dev/twig/0c/f6/5d8a7b962639af0d8bfde590927f.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ protected function doDisplay(array $context, array $blocks = array())
4242
$this->displayBlock('jquery', $context, $blocks);
4343
// line 23
4444
echo " jQuery('ul.sf-menu').superfish();
45-
\t\t});
45+
});
4646
4747
</script>
4848
@@ -52,7 +52,7 @@ protected function doDisplay(array $context, array $blocks = array())
5252
<div id=\"wrapper_outer\">
5353
<div id=\"top\">
5454
\t<div id=\"topC\">
55-
<div id=\"insurance1\"></div>
55+
<div id=\"insurance1\"> </div>
5656
<div id=\"insurance2\"></div>
5757
\t</div>
5858
</div>

0 commit comments

Comments
 (0)